Skip to main content

MCP Server for code graph analysis with GraphRAG capabilities

Project description

CodeGraphMCPServer

A lightweight, high-performance source code analysis MCP server with zero configuration

Python 3.11+ License: MIT MCP Tests Coverage CI

๐Ÿ‡ฏ๐Ÿ‡ต ๆ—ฅๆœฌ่ชž็‰ˆ README

Overview

CodeGraphMCPServer is an MCP server that understands codebase structure and provides GraphRAG (Graph Retrieval-Augmented Generation) capabilities. With a self-contained architecture requiring no external database, it enables structural understanding and efficient code completion from MCP-compatible AI tools (GitHub Copilot, Claude Desktop, Cursor, etc.).

๐Ÿง  GraphRAG Features

  • Community Detection: Automatic code module clustering using Louvain algorithm
  • LLM Integration: Multi-provider design supporting OpenAI/Anthropic/Local LLMs
  • Global Search: Codebase-wide understanding using community summaries
  • Local Search: Context retrieval from entity neighborhoods

โœจ Features

Feature Description
๐Ÿš€ Zero Configuration No external DB required, pip install && serve to start immediately
๐ŸŒณ AST Analysis Fast and accurate code analysis with Tree-sitter
๐Ÿ”— Graph Construction Builds graphs of relationships between code entities
๐Ÿ” 14 MCP Tools Dependency analysis, call tracing, code search
๐Ÿ“š 4 MCP Resources Entities, files, communities, statistics
๐Ÿ’ฌ 6 MCP Prompts Code review, feature implementation, debug assistance
โšก Fast Indexing 100K lines in under 30 seconds, incremental updates in under 2 seconds
๐ŸŒ Multi-language Support Python, TypeScript, JavaScript, Rust, Go, Java, PHP, C#, C, C++, HCL, Ruby, Kotlin, Swift, Scala, Lua (16 languages)

Requirements

  • Python 3.11+
  • MCP-compatible client (GitHub Copilot, Claude Desktop, Cursor, Windsurf)

Installation

Install with pip

pip install codegraph-mcp-server

Install from source (for development)

git clone https://github.com/nahisaho/CodeGraphMCPServer.git
cd CodeGraphMCPServer
python -m venv .venv
source .venv/bin/activate  # Linux/macOS
pip install -e ".[dev]"

Quick Start

1. Index a Repository

# Full index
codegraph-mcp index /path/to/repository --full

# Incremental index (default)
codegraph-mcp index /path/to/repository

# Auto re-index with file watching (v0.7.0 NEW)
codegraph-mcp watch /path/to/repository
codegraph-mcp watch /path/to/repository --debounce 2.0  # 2 second debounce
codegraph-mcp watch /path/to/repository --community     # Community detection after re-index

Output example:

Indexed 16 entities, 37 relations in 0.81s

2. Check Statistics

codegraph-mcp stats /path/to/repository

Output example:

Repository Statistics
=====================
Repository: /path/to/repository

Entities: 16
Relations: 37
Communities: 0
Files: 1

Entities by type:
  - class: 2
  - function: 2
  - method: 11
  - module: 1

3. Search Code

codegraph-mcp query "Calculator" --repo /path/to/repository

4. Start as MCP Server

# stdio transport (default)
codegraph-mcp serve --repo /path/to/repository

# SSE transport
codegraph-mcp start --repo /path/to/repository --port 8080

MCP Client Configuration

Claude Desktop

~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "codegraph": {
      "command": "codegraph-mcp",
      "args": ["serve", "--repo", "/path/to/your/project"]
    }
  }
}

Claude Code

# stdio transport
claude mcp add codegraph -- codegraph-mcp serve --repo /path/to/project

# HTTP transport (SSE server)
codegraph-mcp start --port 8080  # In another terminal
claude mcp add --transport http codegraph http://0.0.0.0:8080

VS Code (GitHub Copilot)

.vscode/settings.json:

{
  "mcp.servers": {
    "codegraph": {
      "command": "codegraph-mcp",
      "args": ["serve", "--repo", "${workspaceFolder}"]
    }
  }
}

Cursor

~/.cursor/mcp.json:

{
  "mcpServers": {
    "codegraph": {
      "command": "codegraph-mcp",
      "args": ["serve", "--repo", "/path/to/your/project"]
    }
  }
}

๐Ÿ›  MCP Tools (14)

Graph Query Tools

Tool Description Main Arguments
query_codebase Search code graph with natural language query, max_results
find_dependencies Find entity dependencies entity_id, depth
find_callers Find callers of function/method entity_id
find_callees Find callees of function/method entity_id
find_implementations Find interface implementations entity_id
analyze_module_structure Analyze module structure file_path

Code Retrieval Tools

Tool Description Main Arguments
get_code_snippet Get entity source code entity_id, include_context
read_file_content Get file content file_path, start_line, end_line
get_file_structure Get file structure overview file_path

GraphRAG Tools

Tool Description Main Arguments
global_search Cross-community global search query
local_search Local search in entity neighborhood query, entity_id

Management Tools

Tool Description Main Arguments
suggest_refactoring Suggest refactoring entity_id, type
reindex_repository Re-index repository incremental
execute_shell_command Execute shell command command, timeout

๐Ÿ“š MCP Resources (4)

URI Pattern Description
codegraph://entities/{id} Entity details
codegraph://files/{path} Entities in file
codegraph://communities/{id} Community information
codegraph://stats Graph statistics

๐Ÿ’ฌ MCP Prompts (6)

Prompt Description Arguments
code_review Perform code review entity_id, focus_areas
explain_codebase Explain codebase scope, detail_level
implement_feature Feature implementation guide feature_description, constraints
debug_issue Debug assistance issue_description, context
refactor_guidance Refactoring guide entity_id, goal
test_generation Test generation entity_id, test_type

Usage Examples

Conversation with AI Assistant

You: What are the dependencies of the UserService class?

AI: [Using find_dependencies tool]
    UserService depends on:
    - DatabaseConnection (database.py)
    - Logger (utils/logging.py)
    - UserRepository (repositories/user.py)
You: What would be affected if I modify the authenticate method?

AI: [Using find_callers tool]
    Callers of authenticate:
    - LoginController.login() (controllers/auth.py:45)
    - APIMiddleware.verify_token() (middleware/api.py:23)
    - TestUserService.test_auth() (tests/test_user.py:78)
You: Explain the main components of this project

AI: [Using global_search tool]
    [Using explain_codebase prompt]
    
    This project uses a 3-tier architecture:
    1. Controllers layer: HTTP request handling
    2. Services layer: Business logic
    3. Repositories layer: Data access

Development

Run Tests

# Run all tests
pytest

# With coverage
pytest --cov=src/codegraph_mcp --cov-report=html

# Specific tests
pytest tests/unit/test_parser.py -v

Lint & Format

# Lint with Ruff
ruff check src tests

# Format with Ruff
ruff format src tests

# Type check with MyPy
mypy src

Architecture

src/codegraph_mcp/
โ”œโ”€โ”€ __init__.py          # Package initialization
โ”œโ”€โ”€ __main__.py          # CLI entry point
โ”œโ”€โ”€ server.py            # MCP server
โ”œโ”€โ”€ config.py            # Configuration management
โ”œโ”€โ”€ core/                # Core logic
โ”‚   โ”œโ”€โ”€ parser.py        # Tree-sitter AST parser
โ”‚   โ”œโ”€โ”€ graph.py         # NetworkX graph engine
โ”‚   โ”œโ”€โ”€ indexer.py       # Repository indexer
โ”‚   โ”œโ”€โ”€ community.py     # Community detection (Louvain)
โ”‚   โ”œโ”€โ”€ semantic.py      # Semantic analysis
โ”‚   โ”œโ”€โ”€ llm.py           # LLM integration (OpenAI/Anthropic/Local)
โ”‚   โ””โ”€โ”€ graphrag.py      # GraphRAG search engine
โ”œโ”€โ”€ storage/             # Storage layer
โ”‚   โ”œโ”€โ”€ sqlite.py        # SQLite persistence
โ”‚   โ”œโ”€โ”€ cache.py         # File cache
โ”‚   โ””โ”€โ”€ vectors.py       # Vector store
โ”œโ”€โ”€ mcp/                 # MCP interface
โ”‚   โ”œโ”€โ”€ tools.py         # 14 MCP Tools
โ”‚   โ”œโ”€โ”€ resources.py     # 4 MCP Resources
โ”‚   โ””โ”€โ”€ prompts.py       # 6 MCP Prompts
โ””โ”€โ”€ languages/           # Language support (12 languages)
    โ”œโ”€โ”€ python.py        # Python extractor
    โ”œโ”€โ”€ typescript.py    # TypeScript extractor
    โ”œโ”€โ”€ javascript.py    # JavaScript extractor
    โ”œโ”€โ”€ rust.py          # Rust extractor
    โ”œโ”€โ”€ go.py            # Go extractor
    โ”œโ”€โ”€ java.py          # Java extractor
    โ”œโ”€โ”€ php.py           # PHP extractor
    โ”œโ”€โ”€ csharp.py        # C# extractor
    โ”œโ”€โ”€ c.py             # C extractor
    โ”œโ”€โ”€ cpp.py           # C++ extractor
    โ”œโ”€โ”€ hcl.py           # HCL (Terraform) extractor
    โ””โ”€โ”€ ruby.py          # Ruby extractor

Performance

Measured Values (v0.3.0)

Metric Measured Notes
Indexing speed 32 entities/sec 67 files, 941 entities
File processing speed 0.44 sec/file Python/TS/Rust mixed
Incremental index < 2 sec Changed files only
Query response < 2ms Graph search

Target Values

Metric Target
Initial index (100K lines) < 30 sec
Incremental index < 2 sec
Query response < 500ms
Startup time < 2 sec
Memory usage < 500MB

License

MIT License - See LICENSE

Acknowledgments

Related Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_nahisaho_codegraph_mcp_server-0.8.0.tar.gz.

File metadata

  • Download URL: iflow_mcp_nahisaho_codegraph_mcp_server-0.8.0.tar.gz
  • Upload date:
  • Size: 119.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_nahisaho_codegraph_mcp_server-0.8.0.tar.gz
Algorithm Hash digest
SHA256 4a6aa81e1cf40a67986494f0cc5386b3df462eaad9d6802954a2f02085acf413
MD5 14daf5a205cea254388dad0d3ca346da
BLAKE2b-256 8288ce9c2fb7d9d299d8c030b3114ec94cc8d4ac08b8e4b23c5afb2f7aaf0bf6

See more details on using hashes here.

File details

Details for the file iflow_mcp_nahisaho_codegraph_mcp_server-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_nahisaho_codegraph_mcp_server-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 113.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_nahisaho_codegraph_mcp_server-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 30e772e7578a224a6e4bce439241b1c564b6627f34788c34e63566d62e788ea2
MD5 35021ec4bb64a6c08a6e7ba6a77ab525
BLAKE2b-256 541b107b97d1a754bee55fc259655e2563e24cb8a5353e35c8026fa84b4e041f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page