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.
Get your credentials
The easiest way is via the Memorion CLI, which handles login in the browser:
npm install -g @memorion/cli
memorion loginAdd 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.
{
"mcpServers": {
"memorion": {
"command": "npx",
"args": ["-y", "@memorion/mcp"],
"env": {
"MEMORION_API_KEY": "memorion_dev_prod_xxx",
"MEMORION_USER_ID": "<your_user_id>"
}
}
}
}claude mcp add memorion -e MEMORION_API_KEY=memorion_dev_prod_xxx -e MEMORION_USER_ID=<your_user_id> -- npx -y @memorion/mcpRestart 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:
| Tool | Description |
|---|---|
| get_current_user | Verify the connection; show account info |
| list_recordings | List or search recordings by keyword and time range |
| get_recording | Metadata, summary and audio availability for one recording |
| get_transcript | Full transcript with speaker labels |
| get_summary | AI summary: title, overview, action items |
| get_audio_url | Temporary download link for the raw audio (15 min) |
| search_memories | Semantic 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.