Integrations
Connect Agentic Memory to your favorite AI clients via the Model Context Protocol.
Claude Desktop
The most popular MCP client. Add Agentic Memory to your Claude Desktop configuration.
{
"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"
}
}
}
}Cursor IDE
Configure Agentic Memory in Cursor's MCP settings for inline AI chat integration.
{
"mcpServers": {
"agentic-memory": {
"command": "agentic-memory",
"args": ["serve", "--repo", "/absolute/path/to/your/project", "--port", "8000"]
}
}
}ChatGPT
Connect via the hosted OpenAI MCP surface. No local setup required for the managed beta.
MCP Server URL:
https://mcp.agentmemorylabs.com/mcp-openai
Available tools:
- search_codebase
- get_file_dependencies
- trace_execution_path
- search_all_memory
- search_web_memory
- memory_ingest_research
- search_conversations
- get_conversation_context
- add_messageWindsurf
Add Agentic Memory to your Windsurf MCP configuration.
{
"servers": {
"agentic-memory": {
"command": "agentic-memory",
"args": ["serve", "--repo", "/absolute/path/to/your/project"],
"env": {
"NEO4J_URI": "bolt://localhost:7687"
}
}
}
}Codex
Use the local Codex plugin scaffold for preflight validation. Public distribution flows through the approved OpenAI app.
{
"id": "agentic-memory",
"name": "Agentic Memory",
"description": "Search and trace code, research, and conversation memory.",
"mcpEndpoint": "https://mcp.agentmemorylabs.com/mcp-codex"
}