MCP (Model Context Protocol) Remote Server for Claude AI integration running on VPS.
Server is running at: http://212.224.93.149:3000
- 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
- add - Add two numbers
- multiply - Multiply two numbers
- get_weather - Get weather for a location
- get_time - Get current time
- system_info - Get VPS system information
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 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":{}}'git clone https://github.com/Comunsoft/mcp-remote-server.git
cd mcp-remote-server
npm install
npm startMIT