Back to Home

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.

  1. Open this page at aimemory.lat/install.
  2. Click Connect with One Click.
  3. Your browser opens claude://mcp/install with the Memxus MCP URL.
  4. Claude Desktop asks you to confirm — accept the connector.
  5. Claude redirects to the dashboard — sign in with Google if needed, then authorize.
  6. Claude receives the token and you are connected (no API key to copy).
Install for Claude

Cursor

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:

  1. Sign in to the dashboard and open API Keys (https://dashboard-aimemory.lat/api-keys). Copy your aimem_* key (auto-provisioned on first login).
  2. In Cursor: Settings → MCP → + Add new MCP server.
  3. Paste the JSON config below (replace the placeholder with your real API key).
  4. 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:

  1. Copy your API key from the dashboard (https://dashboard-aimemory.lat/api-keys).
  2. Create or edit mcp.json — workspace: .vscode/mcp.json, or use VS Code User Settings for a global config.
  3. Paste the VS Code JSON below with your Bearer token.
  4. 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/mcp

Plan 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