Replies: 1 comment
-
✅ Solution Added to Wiki!Hey! Great question about remote MCP Memory Service configuration. I've just added comprehensive documentation to the wiki that covers exactly what you need. 🎯 Complete Solution Now Available📚 Location: 03 Integration Guide - Remote Server Configuration 🔧 Quick Answer for Your SetupHere's the exact JSON configuration you need for Claude Desktop: {
"mcpServers": {
"memory": {
"command": "node",
"args": ["/path/to/mcp-memory-service/examples/http-mcp-bridge.js"],
"env": {
"MCP_MEMORY_HTTP_ENDPOINT": "https://your-vps-ip:8000/api",
"MCP_MEMORY_API_KEY": "your-secure-api-key"
}
}
}
} 🚀 What You Need to Do
📖 Complete DocumentationThe new wiki section includes:
🛠️ The HTTP-to-MCP BridgeThe solution uses the existing
This should get your remote setup working perfectly! Let me know if you run into any issues following the guide. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I've successfully set up the doobidoo/mcp-memory-service on my VPS. I can access the web dashboard perfectly at http://my-vps-ip:8000, and everything looks healthy.
Now I'm stuck on the client-side configuration. The documentation I've found mainly shows how to launch the service locally using command and args in the claude_desktop_config.json.
My question is: How do I configure Claude Desktop and Cursor to connect to my remote server endpoint (https://:8000/mcp) instead of launching a local process?
I also have an API key set on the server, so I'll need to know how to include that in the configuration as well.
What should the JSON configuration look like for a remote connection?
Thanks for any help!
Beta Was this translation helpful? Give feedback.
All reactions