Remote MCP Server
Connect Claude Desktop, Cursor, or VS Code to the hosted Memxus MCP server. Tools: remember, recall, get_context, list_memories, forget, and memory_stats — with plan limits enforced per account.
Connection hub (all clients) →Claude Desktop / claude.ai
One-click OAuth install — no API keys to copy.
- Open this page at aimemory.lat/install.
- Click Connect with One Click.
- Your browser opens claude://mcp/install with the Memxus MCP URL.
- Claude Desktop asks you to confirm — accept the connector.
- Claude redirects to the dashboard — sign in with Google if needed, then authorize.
- Claude receives the token and you are connected (no API key to copy).
Install for ClaudeCursor
Cursor does not support OAuth for MCP yet. Create an API key in dashboard-aimemory.lat → API Keys, then Settings → MCP → Add new MCP server:
- Sign in to the dashboard and open API Keys (https://dashboard-aimemory.lat/api-keys). Copy your aimem_* key (auto-provisioned on first login).
- In Cursor: Settings → MCP → + Add new MCP server.
- Paste the JSON config below (replace the placeholder with your real API key).
- Save — Cursor should list 6 Memxus tools (remember, recall, get_context, list_memories, forget, memory_stats).
{
"mcpServers": {
"aimemory": {
"url": "mcp-aimemory-production.up.railway.app/mcp",
"headers": {
"Authorization": "Bearer aimem_YOUR_KEY_HERE"
}
}
}
}Open Cursor tab in connection hub →VS Code (Copilot + MCP)
Use .vscode/mcp.json in the workspace or User Settings for a global config. Same API key as Cursor; different JSON shape:
- Copy your API key from the dashboard (https://dashboard-aimemory.lat/api-keys).
- Create or edit mcp.json — workspace: .vscode/mcp.json, or use VS Code User Settings for a global config.
- Paste the VS Code JSON below with your Bearer token.
- Reload the window if Copilot does not pick up the server immediately.
{
"servers": {
"aimemory": {
"type": "http",
"url": "mcp-aimemory-production.up.railway.app/mcp",
"headers": {
"Authorization": "Bearer aimem_YOUR_KEY_HERE"
}
}
}
}Open VS Code tab in connection hub →Endpoint
mcp-aimemory-production.up.railway.app/mcpPlan limits
Requests and memory storage are limited by your plan. View usage in the dashboard Usage page. Upgrade at Billing.
- Free: 100 API calls/day, 500 memories
- Pro: 10,000 API calls/day, 5,000 memories
- Team / Enterprise: higher or unlimited limits
Troubleshooting
- OAuth errors: retry from /install; ensure Google sign-in completes
- Claude deep link does not open: use manual connector URL on /install#claude
- PLAN_LIMIT errors: upgrade plan or delete memories with forget
- Invalid token: regenerate API key in the dashboard