├── .env.example ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── graphrag_mcp ├── __init__.py └── documentation_tool.py ├── main.py ├── pyproject.toml ├── run_server.sh └── server.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/README.md -------------------------------------------------------------------------------- /graphrag_mcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/graphrag_mcp/__init__.py -------------------------------------------------------------------------------- /graphrag_mcp/documentation_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/graphrag_mcp/documentation_tool.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/run_server.sh -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileylemm/graphrag_mcp/HEAD/server.py --------------------------------------------------------------------------------