mcp-remote-server

Comunsoft/mcp-remote-server

3.2

If you are the rightful owner of mcp-remote-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

MCP Remote Server for Claude AI integration running on VPS.

Tools
5
Resources
0
Prompts
0

MCP Remote Server

MCP (Model Context Protocol) Remote Server for Claude AI integration running on VPS.

๐Ÿš€ Quick Access

Server is running at: http://212.224.93.149:3000

๐Ÿ“ก Endpoints

  • SSE Endpoint: http://212.224.93.149:3000/sse
  • Health Check: http://212.224.93.149:3000/health
  • Server Info: http://212.224.93.149:3000/
  • Test Tool: POST http://212.224.93.149:3000/test-tool

๐Ÿ› ๏ธ Available Tools

  1. add - Add two numbers
  2. multiply - Multiply two numbers
  3. get_weather - Get weather for a location
  4. get_time - Get current time
  5. system_info - Get VPS system information

๐Ÿ”Œ Connect with Claude Desktop

Add to your Claude Desktop configuration file:

Windows: %APPDATA%\Claude\claude_desktop_config.json Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "vps-server": {
      "command": "npx",
      "args": [
        "@modelcontextprotocol/mcp-remote-client",
        "sse",
        "http://212.224.93.149:3000/sse"
      ]
    }
  }
}

๐Ÿงช Test Tools

# Test add tool
curl -X POST http://212.224.93.149:3000/test-tool \
  -H "Content-Type: application/json" \
  -d '{"tool":"add","args":{"a":10,"b":20}}'

# Test weather tool
curl -X POST http://212.224.93.149:3000/test-tool \
  -H "Content-Type: application/json" \
  -d '{"tool":"get_weather","args":{"location":"Madrid"}}'

# Test system info
curl -X POST http://212.224.93.149:3000/test-tool \
  -H "Content-Type: application/json" \
  -d '{"tool":"system_info","args":{}}'

๐Ÿ“ฆ Installation (for development)

git clone https://github.com/Comunsoft/mcp-remote-server.git
cd mcp-remote-server
npm install
npm start

๐Ÿ“ License

MIT