Skip to content

MCP Server

Cognimemo provides an MCP (Model Context Protocol) server that allows AI agents to store and retrieve memories.

Connecting

Add Cognimemo to your MCP client configuration:

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

json
{
  "mcpServers": {
    "cognimemo": {
      "url": "https://dev-api.cognimemo.com/mcp",
      "headers": {
        "Authorization": "Bearer cmk_live_..."
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings:

json
{
  "mcpServers": {
    "cognimemo": {
      "url": "https://dev-api.cognimemo.com/mcp",
      "headers": {
        "Authorization": "Bearer cmk_live_..."
      }
    }
  }
}

Available Tools

The MCP server exposes these tools:

ToolScope RequiredDescription
retainretainStore a memory
recallrecallRetrieve memories by query
reflectreflectGenerate insights from memories
list_banksrecallList memory banks
list_entitiesgraph:readList extracted entities

API Key Requirements

Your API key must have the mcp scope (or individual operation scopes like retain, recall, reflect).

Create a key in Settings → API Keys with the mcp scope.