graphrag_mcp

This is a MCP server I built to interact with my hybrid graph rag db.

GitHub Stars

42

User Rating

Not Rated

Favorites

0

Views

80

Forks

8

Issues

0

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

1Clone this repository:
bash
   git clone https://github.com/rileylemm/graphrag_mcp.git
   cd graphrag_mcp
   
2Install dependencies with uv:
bash
   uv install
   
3Configure your database connections in the .env file:

   # Neo4j Configuration
   NEO4J_URI=bolt://localhost:7687
   NEO4J_USER=neo4j
   NEO4J_PASSWORD=password
   # Qdrant Configuration
   QDRANT_HOST=localhost
   QDRANT_PORT=6333
   QDRANT_COLLECTION=document_chunks
   

Additional Resources