gifflet

Graphiti MCP Server ๐Ÿง 

Community gifflet
Updated

Graphiti MCP Server

Graphiti MCP Server ๐Ÿง 

Python VersionLicenseDocker

๐ŸŒŸ A powerful knowledge graph server for AI agents, built with Neo4j and integrated with Model Context Protocol (MCP).

๐Ÿš€ Features

  • ๐Ÿ”„ Dynamic knowledge graph management with Neo4j
  • ๐Ÿค– Seamless integration with OpenAI models
  • ๐Ÿ”Œ MCP (Model Context Protocol) support
  • ๐Ÿณ Docker-ready deployment
  • ๐ŸŽฏ Custom entity extraction capabilities
  • ๐Ÿ” Advanced semantic search functionality

๐Ÿ› ๏ธ Installation

Prerequisites

  • Docker and Docker Compose
  • Python 3.10 or higher
  • OpenAI API key
  • Minimum 4GB RAM (recommended 8GB)
  • 2GB free disk space

Quick Start ๐Ÿš€

  1. Clone the repository:
git clone https://github.com/gifflet/graphiti-mcp-server.git
cd graphiti-mcp-server
  1. Set up environment variables:
cp .env.sample .env
  1. Edit .env with your configuration:
# Required for LLM operations
OPENAI_API_KEY=your_openai_api_key_here
MODEL_NAME=gpt-4.1-mini

# Optional: Custom OpenAI endpoint (e.g., for proxies)
# OPENAI_BASE_URL=https://api.openai.com/v1

# Neo4j Configuration (defaults work with Docker)
NEO4J_URI=bolt://neo4j:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=demodemo
  1. Start the services:
docker compose up -d
  1. Verify installation:
# Check if services are running
docker compose ps

# Check logs
docker compose logs graphiti-mcp

Alternative: Environment Variables

You can run with environment variables directly:

OPENAI_API_KEY=your_key MODEL_NAME=gpt-4.1-mini docker compose up

๐Ÿ”ง Configuration

Service Ports ๐ŸŒ

Service Port Purpose
Neo4j Browser 7474 Web interface for graph visualization
Neo4j Bolt 7687 Database connection
Graphiti MCP 8000 MCP server endpoint

Environment Variables ๐Ÿ”ง

OpenAI Configuration
Variable Required Default Description
OPENAI_API_KEY โœ… - Your OpenAI API key
OPENAI_BASE_URL โŒ - Custom OpenAI API endpoint (consumed by OpenAI SDK)
MODEL_NAME โŒ gpt-4.1-mini Main LLM model to use
SMALL_MODEL_NAME โŒ gpt-4.1-nano Small LLM model for lighter tasks
LLM_TEMPERATURE โŒ 0.0 LLM temperature (0.0-2.0)
EMBEDDER_MODEL_NAME โŒ text-embedding-3-small Embedding model
Neo4j Configuration
Variable Required Default Description
NEO4J_URI โŒ bolt://neo4j:7687 Neo4j connection URI
NEO4J_USER โŒ neo4j Neo4j username
NEO4J_PASSWORD โŒ demodemo Neo4j password
Server Configuration
Variable Required Default Description
MCP_SERVER_HOST โŒ - MCP server host binding
SEMAPHORE_LIMIT โŒ 10 Concurrent operation limit for LLM calls
Azure OpenAI Configuration (Optional)

For Azure OpenAI deployments, use these environment variables instead of the standard OpenAI configuration:

Variable Required Default Description
AZURE_OPENAI_ENDPOINT โœ…* - Azure OpenAI endpoint URL
AZURE_OPENAI_API_VERSION โœ…* - Azure OpenAI API version
AZURE_OPENAI_DEPLOYMENT_NAME โœ…* - Azure OpenAI deployment name
AZURE_OPENAI_USE_MANAGED_IDENTITY โŒ false Use Azure managed identity for auth
AZURE_OPENAI_EMBEDDING_ENDPOINT โŒ - Separate endpoint for embeddings
AZURE_OPENAI_EMBEDDING_API_VERSION โŒ - API version for embeddings
AZURE_OPENAI_EMBEDDING_DEPLOYMENT_NAME โŒ - Deployment name for embeddings
AZURE_OPENAI_EMBEDDING_API_KEY โŒ - Separate API key for embeddings

* Required when using Azure OpenAI

Notes:

  • OPENAI_BASE_URL is consumed directly by the OpenAI Python SDK, useful for proxy configurations or custom endpoints
  • SEMAPHORE_LIMIT controls concurrent LLM API calls - decrease if you encounter rate limits, increase for higher throughput
  • Azure configuration is an alternative to standard OpenAI - don't mix both configurations

Neo4j Settings ๐Ÿ—„๏ธ

Default configuration for Neo4j:

  • Username: neo4j
  • Password: demodemo
  • URI: bolt://neo4j:7687 (within Docker network)
  • Memory settings optimized for development

Docker Environment Variables ๐Ÿณ

You can run with environment variables directly:

OPENAI_API_KEY=your_key MODEL_NAME=gpt-4.1-mini docker compose up

For Azure OpenAI:

AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com \
AZURE_OPENAI_API_VERSION=2024-02-01 \
AZURE_OPENAI_DEPLOYMENT_NAME=your-deployment \
OPENAI_API_KEY=your_key \
docker compose up

๐Ÿ”Œ Integration

Cursor IDE Integration ๐Ÿ–ฅ๏ธ

  1. Configure Cursor MCP settings:
{
  "mcpServers": {
    "Graphiti": {
      "command": "uv",
      "args": ["run", "graphiti_mcp_server.py"],
      "env": {
        "OPENAI_API_KEY": "your_key_here"
      }
    }
  }
}
  1. For Docker-based setup:
{
  "mcpServers": {
    "Graphiti": {
      "url": "http://localhost:8000/sse"
    }
  }
}
  1. Add Graphiti rules to Cursor's User Rules (see graphiti_cursor_rules.mdc)
  2. Start an agent session in Cursor

Other MCP Clients

The server supports standard MCP transports:

  • SSE (Server-Sent Events): http://localhost:8000/sse
  • WebSocket: ws://localhost:8000/ws
  • Stdio: Direct process communication

๐Ÿ’ป Development

Local Development Setup

  1. Install dependencies:
# Using uv (recommended)
curl -LsSf https://astral.sh/uv/install.sh | sh
uv sync

# Or using pip
pip install -r requirements.txt
  1. Start Neo4j locally:
docker run -d \
  --name neo4j-dev \
  -p 7474:7474 -p 7687:7687 \
  -e NEO4J_AUTH=neo4j/demodemo \
  neo4j:5.26.0
  1. Run the server:
# Set environment variables
export OPENAI_API_KEY=your_key
export NEO4J_URI=bolt://localhost:7687

# Run with stdio transport
uv run graphiti_mcp_server.py

# Or with SSE transport
uv run graphiti_mcp_server.py --transport sse --use-custom-entities

Testing

# Run basic connectivity test
curl http://localhost:8000/health

# Test MCP endpoint
curl http://localhost:8000/sse

๐Ÿ” Troubleshooting

Common Issues

๐Ÿณ Docker Issues
# Clean up and restart
docker compose down -v
docker compose up --build

# Check disk space
docker system df

Logs and Debugging

# View all logs
docker compose logs -f

# View specific service logs
docker compose logs -f graphiti-mcp
docker compose logs -f neo4j

# Enable debug logging
docker compose up -e LOG_LEVEL=DEBUG

Performance Issues

  • Memory: Increase Neo4j heap size in docker-compose.yml
  • Storage: Monitor Neo4j data volume usage
  • Network: Check for firewall blocking ports 7474, 7687, 8000

๐Ÿ—๏ธ Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚   MCP Client    โ”‚    โ”‚  Graphiti MCP    โ”‚    โ”‚     Neo4j       โ”‚
โ”‚   (Cursor)      โ”‚โ—„โ”€โ”€โ–บโ”‚     Server       โ”‚โ—„โ”€โ”€โ–บโ”‚   Database      โ”‚
โ”‚                 โ”‚    โ”‚   (Port 8000)    โ”‚    โ”‚  (Port 7687)    โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                                โ”‚
                                โ–ผ
                       โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                       โ”‚   OpenAI API     โ”‚
                       โ”‚   (LLM Client)   โ”‚
                       โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Components

  • Neo4j Database: Graph storage and querying
  • Graphiti MCP Server: API layer and LLM operations
  • OpenAI Integration: Entity extraction and semantic processing
  • MCP Protocol: Standardized AI agent communication

๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

๐Ÿ“ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

Need help? Open an issue or check our troubleshooting guide above.

MCP Server ยท Populars

MCP Server ยท New