Geniro Graphiti MCP
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Geniro Graphiti MCPsearch memory facts about climate change"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Geniro Graphiti MCP
A clean-room Model Context Protocol server that gives the Claude CLI a Graphiti knowledge-graph memory, backed by Neo4j.
It embeds graphiti-core in-process and writes synchronously: add_memory
awaits the actual graph write and returns the real result. There is no background
queue, so an ingestion failure is reported to you immediately instead of being
silently dropped while the tool reports success — the bug that affects the
upstream server and its forks.
Why this exists
The upstream Graphiti MCP server enqueues each episode on an in-memory
asyncio.Queue and returns success right away. If processing fails, the error is
only logged; if the process restarts, the whole queue is lost. You get "success"
and an empty graph. This rewrite removes the queue entirely:
Synchronous awaited writes — errors propagate to the caller.
Two-model config done right — a main LLM and an embedder are both required and validated; a misconfigured embedder fails loudly instead of silently returning no search results.
A real test suite — unit tests prove the no-silent-drop guarantee; testcontainers integration tests run against a real Neo4j.
Related MCP server: mcp-memory-graphdb
Requirements
Python 3.11+
A running Neo4j 5.26+ (use the bundled
docker-compose.yml)An LLM provider key (OpenAI by default) and a reachable embedder
uv(recommended) orpip/pipxDocker (only for the integration tests / bundled Neo4j)
Quick start
# 1. Start Neo4j
docker compose up -d
# 2. Configure
cp .env.example .env
# edit .env: set OPENAI_API_KEY, and point the embedder at a real embedding model
# 3. Install
uv sync # or: pip install .
# 4. Run (stdio)
uv run graphiti-mcp # or just: graphiti-mcpRegister with the Claude CLI
claude mcp add graphiti-mcp -- graphiti-mcpIf you installed into a virtualenv, point Claude at the resolved binary, e.g.:
claude mcp add graphiti-mcp -- uv run --directory /path/to/geniro-graphiti-mcp graphiti-mcpThen, from Claude: call add_memory, then search_memory_facts, and confirm the
fact comes back; get_status reports Neo4j connectivity and the resolved providers.
Configuration
All configuration is via environment variables (or .env). See
.env.example for the full list. Highlights:
Variable | Default | Notes |
|
| Bolt endpoint |
|
| Match |
|
|
|
|
| Extraction model |
| — | Required for |
|
|
|
|
| Must be an embedding model |
|
| Must match the model's output dimension |
|
| Ollama default |
|
| Optional memory namespace |
Provider notes
Two models are always needed. An LLM extracts entities/relationships; an embedder vectorizes them for search. Configuring only an LLM yields empty search results.
OpenAI-compatible endpoints (LiteLLM, Ollama, vLLM, OpenRouter) must use
LLM_PROVIDER=openai_generic. This uses graphiti-core'sOpenAIGenericClientsoLLM_BASE_URLis honoured — the nativeOpenAIClientignoresbase_url(graphiti issue #1116) and would silently hit api.openai.com.Anthropic / Voyage need optional extras:
uv pip install '.[anthropic]'or'.[voyage]'.Embedding model, not chat model.
qwen3-embedding:8bis an embedding model;qwen3:8bis a chat model and will break search.EMBEDDER_DIMmust match.
Tools
Tool | Purpose |
| Ingest an episode (synchronous, awaited). |
| Add an explicit (source)-[edge]->(target) fact. |
| Search relationships (facts). |
| Search entity nodes. |
| List recent episodes. |
| Entities extracted from an episode. |
| Fetch one edge by UUID. |
| Delete an edge by UUID. |
| Delete an episode by UUID. |
| (Re)build community clusters. |
| Summarize a thread of episodes. |
| Delete all data for one group (destructive, group-scoped). |
| Neo4j connectivity + resolved providers. |
Testing
# Unit tests (mocked graphiti-core — no Neo4j needed)
uv run pytest tests/unit -q
# Integration tests (spins a real Neo4j via testcontainers; needs Docker + an
# embedder/LLM the container can reach)
uv run pytest -m integration -q
# Everything
uv run pytest -qThe unit suite includes the core guarantee: when a write fails, add_memory
returns an error synchronously — never a false success.
Architecture
Claude CLI ──stdio──> graphiti-mcp (FastMCP)
│
├─ config.py env/.env settings
├─ providers.py LLM + embedder factories
├─ engine.py Graphiti(Neo4jDriver, llm, embedder)
├─ tools/ the 13 MCP tools (await writes)
└─ models.py pydantic responses
│
└─ graphiti-core ──Bolt──> Neo4jThe engine is embedded directly (architecture A) — no separate Graphiti REST service, no network hop, no async-202 durability bug.
License
Apache-2.0.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/geniro-io/geniro-graphiti-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server