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 read-only — your assistant can read recordings but never modify or delete anything.

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 seven read-only tools:

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_memoriesSemantic search over long-term memories

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.