Compare commits
2 commits
main
...
chore/dock
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35f82c88e5 | ||
|
|
25707e4e51 |
2 changed files with 20 additions and 3 deletions
|
|
@ -21,9 +21,9 @@ The Graphiti MCP server exposes the following key high-level functions of Graphi
|
|||
- **Group Management**: Organize and manage groups of related data with group_id filtering
|
||||
- **Graph Maintenance**: Clear the graph and rebuild indices
|
||||
|
||||
## Quick Start for Claude Desktop, Cursor, and other clients
|
||||
## Quick Start
|
||||
|
||||
1. Clone the Graphiti GitHub repo
|
||||
### Clone the Graphiti GitHub repo
|
||||
|
||||
```bash
|
||||
git clone https://github.com/getzep/graphiti.git
|
||||
|
|
@ -35,7 +35,9 @@ or
|
|||
gh repo clone getzep/graphiti
|
||||
```
|
||||
|
||||
Note the full path to this directory.
|
||||
### For Claude Desktop and other `stdio` only clients
|
||||
|
||||
1. Note the full path to this directory.
|
||||
|
||||
```
|
||||
cd graphiti && pwd
|
||||
|
|
@ -45,6 +47,18 @@ cd graphiti && pwd
|
|||
|
||||
3. Configure Claude, Cursor, or other MCP client to use [Graphiti with a `stdio` transport](#integrating-with-mcp-clients). See the client documentation on where to find their MCP configuration files.
|
||||
|
||||
### For Cursor and other `sse`-enabled clients
|
||||
|
||||
1. Change directory to the `mcp_server` directory
|
||||
|
||||
`cd graphiti/mcp_server`
|
||||
|
||||
2. Start the service using Docker Compose
|
||||
|
||||
`docker compose up`
|
||||
|
||||
3. Point your MCP client to `http://localhost:8000/sse`
|
||||
|
||||
## Installation
|
||||
|
||||
### Prerequisites
|
||||
|
|
@ -163,6 +177,8 @@ The Docker Compose setup includes a Neo4j container with the following default c
|
|||
|
||||
#### Running with Docker Compose
|
||||
|
||||
A Graphiti MCP container is available at: `zepai/knowledge-graph-mcp`. The latest build of this container is used by the Compose setup below.
|
||||
|
||||
Start the services using Docker Compose:
|
||||
|
||||
```bash
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ services:
|
|||
start_period: 30s
|
||||
|
||||
graphiti-mcp:
|
||||
image: zepai/knowledge-graph-mcp:latest
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue