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
- 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
๐ 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