LightRAGCoder is an MCP (Model Context Protocol) server that uses LightRAG and Tree-sitter to build a knowledge graph from code and text-based documents (text-only; PDFs/Word/Excel are not parsed) in a repository/directory, and leverages it for Q&A and implementation planning.
It provides tools for graph update (graph_update), implementation planning (graph_plan), and Q&A (graph_query).
- 📊 Knowledge graph update (
graph_update): Analyze code/documents to incremental updates a knowledge graph and embedding index - 🔧 Implementation planning (
graph_plan): Output implementation plans and concrete change steps for modification/addition requests based on the knowledge graph (optionally combined with vector search) - 🔍 Q&A (
graph_query): Answer questions based on the knowledge graph (optionally combined with vector search)
- LightRAGCoder
- Table of Contents
- 🚀 Quick Start
- 🏗️ Building Windows Executable
- 📦 CLI Tool - LightRAGCoder
- ⚙️ Configuration Options
- 🧬 Supported Languages (v0.3.1)
- 🏗️ MCP Structure
- 🛠️ Standalone Execution
- 🙏 Acknowledgments
- 📄 License
- Python 3.10+
- uv package manager
- Credentials for your chosen LLM provider (set the required environment variables; see the LLM Providers section below)
LightRAGCoder includes a build script to create a standalone Windows executable (.exe) using PyInstaller. This allows you to distribute and run LightRAGCoder without requiring Python installation.
# Run the build script
uv run build_exe.pyThe build process will:
- Clean up previous build artifacts
- Install required dependencies via uv
- Create a standalone executable using PyInstaller
- Output the executable to the
dist/directory
- The executable includes all dependencies and can be run on Windows systems without Python installed
- The first build may take several minutes as it compiles all dependencies
- Ensure you have sufficient disk space for the build process
LightRAGCoder is a command-line interface that provides access to the core functionalities of LightRAGCoder. It offers three main commands:
Start the MCP (Model Context Protocol) server to interact with MCP clients like Claude Code or VS Code GitHub Copilot Extensions. Note: Requires an existing storage directory (create one first using the build command).
LightRAGCoder mcp --storage-dir <storage_directory> --mode <transport_mode>--storage-dir: Storage directory path (required)--mode: Server transport mode (stdioorstreamable-http, default:stdio)
Analyze the target repository/directory and build a knowledge graph and vector embedding index.
LightRAGCoder build --source <source_paths> --storage-dir <storage_directory> --description <description>--source: Comma-separated list of source files or directories to analyze (required)--storage-dir: Storage directory path (required)--description: Description for the storage (required)
Merge entities in an existing GraphRAG storage based on semantic similarity.
LightRAGCoder merge --storage-dir <storage_directory>--storage-dir: Storage directory path (required)
# Run MCP server with multiple source directories
LightRAGCoder mcp --storage-dir /path/to/storage
# Create a new knowledge graph
LightRAGCoder build --source /path/to/my/repository --storage-dir my_project_storage --description "xxx module Storage"
# Merge entities in an existing storage
LightRAGCoder merge --storage-dir my_project_storageDownload pre_build version and dezip it
# Copy the settings file
cp .env.example .env
# Edit the settings file
nano .env # or any editorConfigure settings in the .env file:
# LLM provider for graph creation
GRAPH_CREATE_PROVIDER=openai # or anthropic, gemini, azure_openai
# Provider for planning and Q&A
GRAPH_ANALYSIS_PROVIDER=openai # or anthropic, gemini, azure_openai
# API keys (set the variables corresponding to your chosen provider)
OPENAI_API_KEY=your_openai_api_key # or anthropic, gemini, azure_openai
# LLM model for graph creation
GRAPH_CREATE_MODEL_NAME=gpt-4o-mini
# LLM model for planning and Q&A
GRAPH_ANALYSIS_MODEL_NAME=gpt-4o
# Embedding model configuration (using OpenAI)
EMBEDDING_MODEL_PROVIDER=openai
EMBEDDING_MODEL_NAME=text-embedding-3-small
EMBEDDING_MODEL_OPENAI_API_KEY=your_openai_api_key
EMBEDDING_MODEL_OPENAI_BASE_URL=http://localhost:1234/v1 # For LM Studio or other OpenAI-compatible local serversmcp.json:
{
"servers": {
"lightragcoder-server": {
"type": "stdio",
"command": "LightRAGCoder",
"args": [
"mcp",
"--storage-dir",
"/path/to/storage"
]
}
}
}Any client that supports the MCP protocol can be used.
The following tools are available in MCP clients.
Analyze the target repository/directory and update a knowledge graph and vector embedding index (supports incremental updates). Uses GRAPH_CREATE_PROVIDER and GRAPH_CREATE_MODEL_NAME.
Elements:
- None
About Incremental Updates:
When you run graph_update, only changed/added/deleted files are reanalyzed; others are skipped.
If you want to rebuild after changing the embedding model or extraction settings (DOC_DEFINITION_LIST, NO_PROCESS_LIST, target extensions, etc.), delete the existing storage or specify a new storage name and recreate with create manually.
Note (Performance): The first graph creation takes longer as the number of files increases. As a guideline, if there are more than 1,000 files, consider narrowing the target directory (processing time depends on environment and file sizes). Incremental updates reanalyze only the diffs, so the above guideline does not necessarily apply to updates.
Note (First download): If the specified local embedding model is not cached on first graph creation, it will be automatically downloaded (subsequent runs use the cache).
Based on the knowledge graph (optionally combined with vector search), provide a detailed implementation plan and instructions so that the MCP client (agent) can perform actual work. Uses GRAPH_ANALYSIS_PROVIDER and GRAPH_ANALYSIS_MODEL_NAME.
Elements:
- Implementation/modification request
Examples:
I want to add user authentication my_project
my_project Add GraphQL support to the REST API
Improve API performance under high load webapp_storage
Based on the knowledge graph (optionally combined with vector search), answer questions about the target repository/directory. Uses GRAPH_ANALYSIS_PROVIDER and GRAPH_ANALYSIS_MODEL_NAME.
Elements:
- Question content
Examples:
Tell me about this project's API endpoints my_project
my_project Explain the main classes and their roles
About the database design webapp_storage
Supported providers and required environment variables
| Provider | Identifier | Required environment variables |
|---|---|---|
| Anthropic Claude | anthropic |
ANTHROPIC_API_KEY |
| OpenAI GPT | openai |
OPENAI_API_KEY |
| Google Gemini | gemini |
GEMINI_API_KEY |
| Azure OpenAI | azure_openai |
AZURE_OPENAI_API_KEY, AZURE_OPENAI_ENDPOINT, AZURE_API_VERSION |
Specify the identifiers in .env as GRAPH_CREATE_PROVIDER / GRAPH_ANALYSIS_PROVIDER.
LightRAGCoder supports multiple embedding providers with flexible configuration options:
huggingface: Hugging Face sentence-transformers compatible modelsopenai: OpenAI or OpenAI-compatible embedding models (including local servers like LM Studio)
- Default model:
BAAI/bge-m3(Hugging Face) - Default dimension: 1024
- Default max token size: 2048
- Default batch size: 10
EMBEDDING_MODEL_PROVIDER=huggingface
EMBEDDING_MODEL_NAME=BAAI/bge-m3
EMBEDDING_TOKENIZER_MODEL_NAME=BAAI/bge-m3
HUGGINGFACE_HUB_TOKEN=your_hf_token # Optional, for authenticated models
HF_ENDPOINT=https://hf-mirror.com # Optional, for using a mirrorEMBEDDING_MODEL_PROVIDER=openai
EMBEDDING_MODEL_NAME=text-embedding-3-small
EMBEDDING_MODEL_OPENAI_API_KEY=your_openai_api_key
EMBEDDING_MODEL_OPENAI_BASE_URL=http://localhost:1234/v1 - First run: If the specified embedding model is not cached, it will be downloaded automatically. Download time and disk space depend on model size.
- Authenticated models: For Hugging Face models that require authentication, set
HUGGINGFACE_HUB_TOKENin.env. - Local OpenAI-compatible servers: Use
EMBEDDING_MODEL_OPENAI_BASE_URLto connect to local servers like LM Studio.
Implementation note: The settings in this section are passed directly to LightRAG's built-in QueryParam. This MCP does not implement custom retrieval or token-budgeting logic; it reuses LightRAG's behavior as-is.
Search modes follow LightRAG. Set one of the following in .env SEARCH_MODE.
mix: Combination of vector search and knowledge graph search (recommended)hybrid: Combination of local and global searchnaive: Simple vector searchlocal: Community-based searchglobal: Global community search
Input-side token budgets control how much context is assembled for planning and Q&A (LightRAG QueryParam). These are independent from model output token limits.
MAX_TOTAL_TOKENS: Overall input context budget per query (entities + relations + retrieved chunks + system prompt). Default:30000.MAX_ENTITY_TOKENS: Budget for entity context (input-side). Default:6000.MAX_RELATION_TOKENS: Budget for relation context (input-side). Default:8000.
Note: Output token limits are controlled separately via GRAPH_ANALYSIS_MAX_TOKEN_SIZE (for planning/Q&A) and GRAPH_CREATE_MAX_TOKEN_SIZE (for graph creation tasks). If you increase input budgets significantly, ensure your model's total context window can accommodate both input and output.
This MCP can merge entities extracted from documents with entities extracted from code based on semantic similarity. The goal is to unify references (e.g., a class or function defined in code and mentioned in documentation) into a single consolidated entity.
- How it works: Names are normalized and filtered via exclusion rules; document entities and current-pass code entities are embedded and compared using cosine similarity (FAISS). Pairs above the threshold are merged, consolidating descriptions and file paths.
- Controls:
MERGE_ENABLED(default:true): Toggle entity merge.MERGE_SCORE_THRESHOLD(default:0.95): Cosine similarity threshold for merging.- Exclusion settings:
MERGE_EXCLUDE_*lists, private name exclusion, name length bounds, and custom patterns.
- Execution:
- When enabled, merge runs within the graph creation/update flow (after entity extraction).
- You can also run the standalone tool:
uv run standalone_entity_merger.py <storage_dir_path>
LightRAGCoder supports persistent storage settings through a settings.json file in the storage directory. This allows you to maintain configuration across sessions and share settings between different instances.
storage_dir/settings.json- Automatically created and updated when using the storage directory
- Settings are automatically saved when creating or updating storage
- Existing settings are loaded when accessing storage
- Settings include: source directories, configuration parameters, and metadata
The CLI tool automatically uses storage settings when available, reducing the need to repeatedly specify source directories and other parameters.
All environment variables and defaults can be configured by copying .env.example to .env.
Quick reference for all items
| Variable | Purpose/Description |
|---|---|
GRAPH_CREATE_PROVIDER |
LLM provider for graph creation |
GRAPH_ANALYSIS_PROVIDER |
LLM provider for planning/Q&A |
ANTHROPIC_API_KEY |
Anthropic API key |
AZURE_OPENAI_API_KEY |
Azure OpenAI API key |
AZURE_OPENAI_ENDPOINT |
Azure OpenAI endpoint URL |
AZURE_API_VERSION |
Azure OpenAI API version |
OPENAI_API_KEY |
OpenAI API key |
OPENAI_BASE_URL |
OpenAI-compatible endpoint base URL (e.g. LM Studio http://localhost:1234/v1) |
GEMINI_API_KEY |
Google Gemini API key |
GRAPH_CREATE_MODEL_NAME |
LLM model name for graph creation |
GRAPH_ANALYSIS_MODEL_NAME |
LLM model name for planning/Q&A |
GRAPH_CREATE_MAX_TOKEN_SIZE |
Max output tokens for LLM during graph creation |
GRAPH_ANALYSIS_MAX_TOKEN_SIZE |
Max output tokens for LLM during planning/Q&A |
MAX_TOTAL_TOKENS |
Overall input-side token budget per planning/query (entities + relations + chunks + system) |
MAX_ENTITY_TOKENS |
Input-side token budget for entity context |
MAX_RELATION_TOKENS |
Input-side token budget for relation context |
EMBEDDING_BATCH_SIZE |
Batch size for embedding operations |
EMBEDDING_DIM |
Embedding vector dimension |
EMBEDDING_MAX_TOKEN_SIZE |
Max token length for embedding |
EMBEDDING_MODEL_NAME |
Embedding model name |
EMBEDDING_MODEL_OPENAI_API_KEY |
OpenAI API key for embedding model (when provider=openai) |
EMBEDDING_MODEL_OPENAI_BASE_URL |
OpenAI-compatible base URL for embedding model |
EMBEDDING_MODEL_PROVIDER |
Embedding provider (huggingface/openai) |
EMBEDDING_TOKENIZER_MODEL_NAME |
Embedding tokenizer model name |
HUGGINGFACE_HUB_TOKEN |
HF auth token (optional) |
HF_ENDPOINT |
Hugging Face endpoint URL (optional, for using a mirror) |
PARALLEL_NUM |
Parallelism (concurrent LLM/embedding tasks) |
CHUNK_MAX_TOKENS |
Max tokens per chunk |
MAX_DEPTH |
Max Tree-sitter traversal depth |
RATE_LIMIT_MIN_INTERVAL |
Minimum interval between API calls (seconds) |
RATE_LIMIT_ERROR_WAIT_TIME |
Wait time on rate limit errors (seconds) |
SEARCH_TOP_K |
Number of results to retrieve in search |
SEARCH_MODE |
Search mode (naive/local/global/hybrid/mix) |
DOC_EXT_TEXT_FILES |
Extensions treated as document (text) files (comma-separated) |
DOC_EXT_SPECIAL_FILES |
Special filenames without extension (text) (comma-separated) |
DOC_DEFINITION_LIST |
Entity types to extract from documents |
NO_PROCESS_LIST |
Files/directories to exclude (comma-separated) |
MERGE_ENABLED |
Enable entity merge (true/false) |
MERGE_SCORE_THRESHOLD |
Cosine similarity threshold for merge |
MERGE_EXCLUDE_MAGIC_METHODS |
Exclusion list for magic methods |
MERGE_EXCLUDE_GENERIC_TERMS |
Exclusion list for generic terms |
MERGE_EXCLUDE_TEST_RELATED |
Exclusion list for test-related terms |
MERGE_EXCLUDE_PRIVATE_ENTITIES_ENABLED |
Exclude private entities (leading underscore) (true/false) |
MERGE_EXCLUDE_CUSTOM_PATTERNS |
Additional exclusion patterns (wildcards allowed) |
MERGE_MIN_NAME_LENGTH |
Minimum entity name length for merge |
MERGE_MAX_NAME_LENGTH |
Maximum entity name length for merge |
The following 13 languages are supported:
- Python
- C
- C++
- Rust
- C#
- Go
- Ruby
- Java
- Kotlin
- JavaScript
- TypeScript
- HTML
- CSS
LightRAGCoder/
├── README.md
├── CHANGELOG.md # Changelog
├── LICENSE # License (MIT)
├── .gitignore # Git ignore rules
├── .env.example # Environment variable template
├── pyproject.toml # Package settings
├── uv.lock # UV lock file
├── lightragcoder.py # CLI tool entrypoint
├── server.py # MCP server entrypoint
├── build_exe.py # Windows executable builder
├── storage_setting.py # Storage settings management
├── standalone_graph_creator.py # Standalone graph creation
├── standalone_entity_merger.py # Standalone entity merger
├── repo_graphrag/ # Package
│ ├── config/ # Configuration
│ ├── initialization/ # Initialization
│ ├── llm/ # LLM clients
│ ├── processors/ # Analysis/graph building
│ ├── utils/ # Utilities
│ ├── graph_storage_creator.py # Storage creation
│ └── prompts.py # Prompts
This MCP is built on the following libraries:
- repo-graphrag-mcp - Base repo
- LightRAG - GraphRAG implementation
- Tree-sitter - Code parsing
This MCP is released under the MIT License. See the LICENSE file for details.