Skip to content

MCP Server

Memonic exposes a remote MCP server at https://memonic.dev/api/mcp using Streamable HTTP transport (spec 2025-03-26).

{
"mcpServers": {
"memonic": {
"url": "https://memonic.dev/api/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}

Add this to your Claude Code ~/.claude/.mcp.json, Cursor settings, or any other MCP client.

Pass x-agent-id header to scope memories to a specific agent:

{
"mcpServers": {
"memonic": {
"url": "https://memonic.dev/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY",
"x-agent-id": "my-coding-agent"
}
}
}
}
ToolDescription
store_memoryPersist a typed memory
recall_memorySemantic search across memories
rag_ingestIngest a document for RAG
rag_queryRetrieve relevant chunks for a prompt
time_travel_queryReconstruct entity state at a timestamp
time_travel_diffDiff entity state between two timestamps

See Tools Reference for full parameter schemas.