Claude Desktop, Web & Mobile
Connect Mnemoverse memory to the Claude apps — the Claude Desktop app, claude.ai in your browser, and mobile. For the Claude Code CLI, see Claude Code instead — it sets up differently.
Setup is manual today
The remote connector is live at https://mcp.mnemoverse.com/mcp — what's still rolling out is the one-click directory listing. Until "Mnemoverse" appears in Claude's connector directory, add it manually with the steps below. (Exact menu labels move as Claude updates — the official link in each section always has the current path.)
Make Claude actually use Mnemoverse
Connecting gives Claude the memory tools; it doesn't make Claude use them. By default Claude answers from its own context, not Mnemoverse. Add a one-line standing instruction so it saves to and recalls from Mnemoverse every session: Make Your Agent Use Memory.
Claude Desktop
Recommended — one-click OAuth (no API key). In the Claude Desktop app: Settings → Connectors → Add custom connector, paste the URL, and complete the browser sign-in on first use:
https://mcp.mnemoverse.com/mcpNo config file, no key to paste. See Remote MCP Server for how the OAuth sign-in works and the tools it exposes, and Anthropic's custom-connector guide for the current exact steps.
Alternative — local config + API key. If you'd rather run the local stdio server, edit the Desktop config file (macOS ~/Library/Application Support/Claude/claude_desktop_config.json, Windows %APPDATA%\Claude\claude_desktop_config.json):
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"mnemoverse": {
"command": "npx",
"args": [
"-y",
"@mnemoverse/mcp-memory-server@latest"
],
"env": {
"MNEMOVERSE_API_KEY": "mk_live_YOUR_KEY",
"MNEMOVERSE_API_URL": "https://core.mnemoverse.com/api/v1"
}
}
}
}Fully quit and reopen Claude Desktop after saving — MCP servers are only picked up on startup. This path needs an API key; the OAuth connector above needs none.
claude.ai (web)
In the browser, connectors are added in the Claude Settings → Connectors UI — Add custom connector, paste the same URL, sign in. The web app is remote-only (no local stdio server in a browser), so the OAuth connector is the way in.
Plan & org notes
Custom connectors and their availability can depend on your Claude plan, and on Team/Enterprise an admin may need to enable the connector for the org first. Check Anthropic's connector docs for current plan limits before relying on it.
Mobile
The Claude mobile apps inherit the connectors on your account — connect once on Desktop or claude.ai, and mobile follows. There's no separate mobile setup. See Anthropic's note on desktop vs web connectors.
Tools
Over the remote connector Claude gets four memory tools — memory_read, memory_stats, memory_write, memory_feedback. (The local package additionally has memory_delete / memory_delete_domain.) Full parameters are in the API Reference; the connector surface is described on the Remote MCP Server page.
Related
- Claude Code — the CLI (
claude mcp add), a different setup - Remote MCP Server — how the one-click OAuth connector works
- Make Your Agent Use Memory — get Claude to actually call the tools
- Agent Setup — which auth method for which client, at a glance
- API Reference — tool parameters and the REST API