Connect Memorion to Claude, Cursor & more

Set up the Memorion MCP server so your AI assistant can read your recordings, transcripts and summaries.

What you get

After setup you can ask your AI assistant things like "What did I talk about today?", "Summarize last week's meetings", or "Find the action items from my conversation with the design team". The connection is scoped to your own account: your assistant can read your recordings, transcripts, summaries and memories, and — only when you ask it to — add, edit, complete or remove a to-do. It can never modify or delete a recording.

1

Get your credentials

The easiest way is via the Memorion CLI, which handles login in the browser:

Terminal
npm install -g @memorion/cli
memorion login
Login saves your credentials to ~/.memorion/ — MCP picks them up from there automatically, so on the same machine you can even skip the env block below. Your user id is shown by `memorion whoami`.
2

Add Memorion to your MCP client

Add this to your client's MCP configuration. For Claude Desktop that file is claude_desktop_config.json (Settings → Developer → Edit Config); for Claude Code use claude mcp add; Cursor and others have an equivalent MCP settings screen.

claude_desktop_config.json
{
  "mcpServers": {
    "memorion": {
      "command": "npx",
      "args": ["-y", "@memorion/mcp"],
      "env": {
        "MEMORION_API_KEY": "memorion_dev_prod_xxx",
        "MEMORION_USER_ID": "<your_user_id>"
      }
    }
  }
}
Claude Code
claude mcp add memorion -e MEMORION_API_KEY=memorion_dev_prod_xxx -e MEMORION_USER_ID=<your_user_id> -- npx -y @memorion/mcp
3

Restart and test

Restart your MCP client. You should see "memorion" listed among connected servers. Then just ask:

"What did I record today?"

Available tools

The server exposes ten tools — nine read-only, plus update_todo, the only one that writes:

ToolDescription
get_current_userVerify the connection; show account info
list_recordingsList or search recordings by keyword and time range
get_recordingMetadata, summary and audio availability for one recording
get_transcriptFull transcript with speaker labels
get_summaryAI summary: title, overview, action items
get_audio_urlTemporary download link for the raw audio (15 min)
search_memoriesKeyword search over long-term memories
resolve_time_rangeResolve "last Wednesday" or "过去三天" into a real date range in your timezone
list_todosList to-dos the AI extracted from your recordings
update_todoAdd, edit, complete or remove a to-do — the only tool that writes

Troubleshooting

  • Server not showing up: check the JSON syntax of your config file, then fully restart the client.
  • Tools return auth errors: verify MEMORION_API_KEY and MEMORION_USER_ID are set in the env block, or run memorion login on the same machine.
  • npx download is slow on first run: the package is fetched once and cached afterwards.