Skip to content

Commit e4b1bc4

Browse files
Andrei Bogdanclaude
andcommitted
Fix MCP server documentation to reference correct entry point
Update all documentation references from graphiti_mcp_server.py to main.py. The old filename was causing "No such file or directory" errors when users tried to run the commands as documented. The actual entry point is main.py in the mcp_server directory. Changes: - Update 7 command examples in README.md - Update example configuration file with correct path Co-Authored-By: Claude (us.anthropic.claude-sonnet-4-5-20250929-v1:0) <noreply@anthropic.com>
1 parent eb39009 commit e4b1bc4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

mcp_server/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -279,13 +279,13 @@ export NEO4J_USER="neo4j"
279279
export NEO4J_PASSWORD="your_password"
280280
281281
# Run with Neo4j
282-
uv run graphiti_mcp_server.py --database-provider neo4j
282+
uv run main.py --database-provider neo4j
283283
```
284284

285285
Or use the Neo4j configuration file:
286286

287287
```bash
288-
uv run graphiti_mcp_server.py --config config/config-docker-neo4j.yaml
288+
uv run main.py --config config/config-docker-neo4j.yaml
289289
```
290290

291291
### Running with FalkorDB
@@ -305,13 +305,13 @@ export FALKORDB_URI="redis://localhost:6379"
305305
export FALKORDB_PASSWORD="" # If password protected
306306
307307
# Run with FalkorDB
308-
uv run graphiti_mcp_server.py --database-provider falkordb
308+
uv run main.py --database-provider falkordb
309309
```
310310

311311
Or use the FalkorDB configuration file:
312312

313313
```bash
314-
uv run graphiti_mcp_server.py --config config/config-docker-falkordb.yaml
314+
uv run main.py --config config/config-docker-falkordb.yaml
315315
```
316316

317317
### Available Command-Line Arguments
@@ -507,7 +507,7 @@ To use the Graphiti MCP server with other MCP-compatible clients, configure it t
507507
"/Users/<user>>/dev/zep/graphiti/mcp_server",
508508
"--project",
509509
".",
510-
"graphiti_mcp_server.py",
510+
"main.py",
511511
"--transport",
512512
"stdio"
513513
],
@@ -573,7 +573,7 @@ To integrate the Graphiti MCP Server with the Cursor IDE, follow these steps:
573573
1. Run the Graphiti MCP server using the default HTTP transport:
574574

575575
```bash
576-
uv run graphiti_mcp_server.py --group-id <your_group_id>
576+
uv run main.py --group-id <your_group_id>
577577
```
578578

579579
Hint: specify a `group_id` to namespace graph data. If you do not specify a `group_id`, the server will use "main" as the group_id.
@@ -612,7 +612,7 @@ The Graphiti MCP Server uses HTTP transport (at endpoint `/mcp/`). Claude Deskto
612612
```bash
613613
docker compose up
614614
# Or run directly with uv:
615-
uv run graphiti_mcp_server.py
615+
uv run main.py
616616
```
617617

618618
2. **(Optional) Install `mcp-remote` globally**:

mcp_server/config/mcp_config_stdio_example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"command": "uv",
66
"args": [
77
"run",
8-
"/ABSOLUTE/PATH/TO/graphiti_mcp_server.py",
8+
"/ABSOLUTE/PATH/TO/main.py",
99
"--transport",
1010
"stdio"
1111
],

0 commit comments

Comments
 (0)