Agentic Memory

MCP Integration

Connect Agentic Memory to Claude, Cursor, ChatGPT, Windsurf, and Codex via the Model Context Protocol.

Claude Desktop

Edit your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "agentic-memory": {
      "command": "agentic-memory",
      "args": ["serve", "--repo", "/absolute/path/to/your/project"],
      "env": {
        "NEO4J_URI": "bolt://localhost:7687",
        "NEO4J_USER": "neo4j",
        "NEO4J_PASSWORD": "password",
        "GEMINI_API_KEY": "your-gemini-key"
      }
    }
  }
}

Restart Claude Desktop after saving.

Cursor IDE

Open Cursor Settings → Features → MCP Servers, then add:

{
  "mcpServers": {
    "agentic-memory": {
      "command": "agentic-memory",
      "args": ["serve", "--repo", "/absolute/path/to/your/project", "--port", "8000"]
    }
  }
}

ChatGPT (Hosted)

Connect via the hosted OpenAI MCP surface without local setup:

https://mcp.agentmemorylabs.com/mcp-openai

Available Tools

  • search_codebase(query) — Semantic search over code
  • get_file_dependencies(file_path) — Import graph lookup
  • trace_execution_path(start_symbol) — On-demand call tracing
  • search_all_memory(query) — Unified cross-domain search
  • search_conversations(query) — Chat history search
  • add_message(role, content, session_id) — Write to conversation memory