MCP Server
Memonic exposes a remote MCP server at https://memonic.dev/api/mcp using Streamable HTTP transport (spec 2025-03-26).
Connect
Section titled “Connect”{ "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.
Agent scoping
Section titled “Agent scoping”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" } } }}Available tools (6)
Section titled “Available tools (6)”| Tool | Description |
|---|---|
store_memory | Persist a typed memory |
recall_memory | Semantic search across memories |
rag_ingest | Ingest a document for RAG |
rag_query | Retrieve relevant chunks for a prompt |
time_travel_query | Reconstruct entity state at a timestamp |
time_travel_diff | Diff entity state between two timestamps |
See Tools Reference for full parameter schemas.