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-openaiAvailable Tools
search_codebase(query)— Semantic search over codeget_file_dependencies(file_path)— Import graph lookuptrace_execution_path(start_symbol)— On-demand call tracingsearch_all_memory(query)— Unified cross-domain searchsearch_conversations(query)— Chat history searchadd_message(role, content, session_id)— Write to conversation memory