Remote MCP Server
Connect Claude Desktop, Cursor, or VS Code to the hosted Memxus AI context engine ( registry com.memxus/memxus v1.1.0). 9 core tools: remember, recall, get_context, list_memories, get_memory, list_collections, forget, memory_stats, update — with plan limits enforced per account. When v2 features are enabled in dashboard settings, up to 15 tools including GitHub/Notion connect and skill suggestions: connect_source, list_syncable_items, set_sync_selection, check_connect_status, get_context_with_skills, suggest_skills. Use collection slugs for scoped search; get_memory returns full text by ID; list_memories supports full_content for untruncated previews.
Usage examples for reviewers →Connection hub (all clients) →Claude Desktop / claude.ai
One-click OAuth install — no API keys to copy.
- Click Connect with One Click (works on phone, tablet, or computer).
- A new tab opens claude.ai → Customize → Connectors with Memxus pre-filled.
- Click Add, then Connect to authorize (sign in with Google if prompted).
- Memxus tools are ready — no API key to copy.
Install for ClaudeCode editors (Claude Code, Cursor, VS Code, Zed, Windsurf)
Pick your editor on the connection hub, run one terminal command, and sign in with Google. Installed via Smithery.
- Run the command below in your terminal.
- Open https://smithery.run/memxus/memxus/setup and sign in with the same Google account as dashboard.memxus.com.
- Restart your editor and confirm 9 Memxus core tools.
Example for Cursor:
npx -y smithery mcp add memxus/memxus --client cursor
Supported editors: Claude Code, Cursor, VS Code, Zed, Windsurf, Others.
Bearer fallback (Cursor): create an API key in dashboard.memxus.com → API Keys, then Settings → MCP → Add new MCP server:
- Sign in to the dashboard and open API Keys (https://dashboard.memxus.com/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 9 Memxus core tools (remember, recall, get_context, list_memories, get_memory, list_collections, forget, memory_stats, update).
{
"mcpServers": {
"memxus": {
"url": "https://mcp.memxus.com/mcp",
"headers": {
"Authorization": "Bearer aimem_YOUR_KEY_HERE"
}
}
}
}Open code editors section in connection hub →VS Code (Copilot + MCP)
Recommended: install from Agent Customizations → MCP Servers (search memxus) or Extensions @mcp memxus — OAuth, no API key.
- Open VS Code → Chat: Open Customizations → MCP Servers (or Extensions, search @mcp memxus).
- Click Install on Memxus and confirm trust.
- Complete OAuth (Google sign-in via dashboard when prompted).
- Expected: 9 Memxus core tools in Configure Tools (remember, recall, get_context, list_memories, get_memory, list_collections, forget, memory_stats, update).
Bearer fallback: .vscode/mcp.json or User Settings — same API key as Cursor:
- Fallback — copy your API key from the dashboard (https://dashboard.memxus.com/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": {
"memxus": {
"type": "http",
"url": "https://mcp.memxus.com/mcp",
"headers": {
"Authorization": "Bearer aimem_YOUR_KEY_HERE"
}
}
}
}Open VS Code install in Code editors tab →Antigravity CLI
Terminal MCP via Smithery (Google AI Pro/Ultra required since June 2026). Browser Gemini at gemini.google.com does not support custom MCP — use the Chrome extension instead.
- Run the Smithery command below in your terminal.
- Restart Antigravity CLI and authenticate when prompted (Google AI Pro/Ultra required since June 2026).
- Expected: 9 core tools — remember, recall, get_context, list_memories, get_memory, list_collections, forget, memory_stats, update.
- Using Gemini in the browser (gemini.google.com)? Use the Memxus Chrome extension at https://www.memxus.com/extension — MCP is not available on the web app.
{
"mcpServers": {
"memxus": {
"httpUrl": "https://mcp.memxus.com/mcp"
}
}
}Bearer fallback:
antigravity mcp add --transport http memxus https://mcp.memxus.com/mcp -H "Authorization: Bearer aimem_YOUR_KEY_HERE"
Open Antigravity CLI tab in connection hub →Endpoint
https://mcp.memxus.com/mcpPlan limits
Requests and memory storage are limited by your plan. View usage in the dashboard Usage page. Upgrade at Billing.
- Free: 150 API calls/day, 40 memories, 1 MB storage, 30-day retention
- Pro: 1,500 API calls/day, 400 memories, 10 MB storage, 90-day retention
- Team: unlimited API calls, 25,000 memories, ~352 MB storage, unlimited retention
- Enterprise: unlimited limits — contact sales
Troubleshooting
- OAuth errors: retry from /install; ensure Google sign-in completes
- Claude connector page 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