Model Context Protocol (MCP) Server for AI IDEs - Cursor, AntiGravity & Claude
Transform your codebase into an intelligent knowledge base for AI-powered development with Cursor IDE, Google AntiGravity, and MCP-enabled assistants
- The Problem
- The Solution
- See It In Action
- Architecture Overview
- MCP Tools for AI Assistants
- Key Features
- Quick Start
- Use Cases
- Documentation
- Development
- Roadmap
- Contributing
- License
Modern codebases are complex labyrinths—thousands of files, intricate dependencies, and evolving architectures. AI assistants like ChatGPT and Claude are brilliant... but they're flying blind. Without deep understanding of your codebase's structure, relationships, and patterns, they can only see the trees, never the forest.
Axon.MCP.Server transforms your entire codebase into an intelligent, queryable knowledge base using the Model Context Protocol (MCP). Think of it as giving your AI assistant X-ray vision into your code—understanding not just syntax, but semantics, architecture, and relationships.
- 🧠 Semantic Understanding: Goes beyond grep to understand what code means, not just what it says
- 🔗 Relationship Mapping: Automatically builds call graphs, inheritance trees, and dependency networks
- 🤖 AI-Native Integration: Built specifically for ChatGPT, Claude, Cursor IDE, and other MCP-enabled tools
- 📊 Multi-Language Mastery: Deep analysis for C# (Roslyn), Python, JavaScript, TypeScript
- 🔍 Vector-Powered Search: Find code by meaning using semantic embeddings
- 🏗️ Architecture Intelligence: Auto-detects services, APIs, Entity Framework mappings, design patterns
- ⚡ Production-Ready Performance: <500ms p95 latency, handles 10,000+ files with ease
- 🔐 Enterprise Security: JWT auth, RBAC, audit logging, rate limiting—not a toy project
Axon MCP Server seamlessly integrates with leading AI-powered IDEs to supercharge your development workflow
Axon MCP providing deep code context to Google AntiGravity for intelligent code assistance
Real-time code intelligence powered by Axon's semantic understanding in Cursor
┌─────────────────────────────────────────────────────────────┐
│ Client Layer: AI Assistants, IDEs, React UI, REST Clients │
└─────────────────────────────────────────────────────────────┘
│
┌───────────────┼───────────────┐
│ │ │
┌───────────▼────┐ ┌──────▼──────┐ ┌────▼──────┐
│ MCP Server │ │ REST API │ │ React UI │
│ :8001 │ │ :8080 │ │ :80 │
└───────┬────────┘ └──────┬──────┘ └───────────┘
│ │
│ ┌────────┼────────┐
│ │ │ │
│ ┌────▼───┐ ┌─▼────┐ ┌─▼─────────┐
│ │ Worker │ │ Beat │ │ Enrichment│
│ │ (Sync) │ │ Sched│ │ Worker │
│ └────┬───┘ └──────┘ └─────┬─────┘
│ │ │
┌───▼─────────▼─────────────────────▼──────┐
│ Analysis: Tree-sitter + Roslyn + EF │
└───────────────────┬──────────────────────┘
│
┌───────────────┼───────────────┐
│ │ │
┌───────▼──────┐ ┌────▼────┐ ┌──────▼────────┐
│ PostgreSQL │ │ Redis │ │ Prometheus + │
│ + pgvector │ │ Cache │ │ Grafana │
└──────────────┘ └─────────┘ └───────────────┘
Backend: FastAPI, Celery, SQLAlchemy 2.0 (async), Python 3.11+
Parsing: Tree-sitter (multi-lang), Roslyn (C# semantic analysis)
Database: PostgreSQL 15 + pgvector, Redis
AI/ML: OpenAI/OpenRouter (LLM), sentence-transformers (embeddings)
Frontend: React + TypeScript, Vite
Infrastructure: Docker Compose, Prometheus, Grafana
The server exposes 12 powerful tools to AI assistants via the Model Context Protocol:
| Tool | Description | Use Case |
|---|---|---|
search |
Semantic + full-text code search | "Find all authentication controllers" |
get_call_graph |
Function call relationships | "Who calls UserService.CreateUser?" |
get_inheritance_hierarchy |
Class inheritance tree | "Show me all BaseController implementations" |
get_api_endpoints |
List REST API routes | "What endpoints modify the User table?" |
get_ef_entities |
Entity Framework mappings | "Show database schema for Orders" |
get_module_summary |
AI-generated code summaries | "Explain what PaymentService does" |
explore_service |
Navigate service architecture | "Show me the API service structure" |
find_implementations |
Interface implementations | "Find all IRepository implementations" |
get_system_architecture_map |
Generate architecture diagrams | "Visualize system dependencies" |
get_symbol_details |
Detailed symbol info | "Show UserController.Login signature" |
get_file_symbols |
List symbols in a file | "What's in AuthService.cs?" |
get_repository_structure |
Project/solution organization | "Show .NET solution structure" |
- Tree-sitter: Lightning-fast syntactic parsing for Python, JavaScript, TypeScript, and C#
- Roslyn Subprocess: Compiler-grade semantic analysis for C# (type resolution, cross-file references, metadata)
- EF Core Analyzer: Extracts Entity Framework entities, table mappings, and relationships automatically
- 🔄 Automatically discovers repositories from GitLab/Azure DevOps
- 🏷️ Extracts symbols (classes, functions, variables) with rich metadata (docstrings, parameters, return types)
- 📞 Builds call graphs, inheritance hierarchies, and import dependency maps
- 🏗️ Detects services, APIs, workers, and libraries with auto-classification
- 🧮 Generates vector embeddings for semantic search powered by pgvector
- 📝 LLM-generated summaries for symbols and modules (using OpenRouter/OpenAI)
- ⚡ Parallel processing with 8-worker Celery pipeline for blazing speed
- 💾 Smart caching to avoid re-generation and reduce API costs
- 📈 Pre-configured Prometheus metrics (API latency, sync status, search performance, cache hit rates)
- 📉 Beautiful Grafana dashboards for real-time monitoring
- 📄 Structured JSON logging with
structlogfor easy parsing - 📡 Real-time sync progress via Redis Pub/Sub for responsive UI updates
- 🔑 JWT authentication + API keys for flexible auth strategies
- 👥 Role-based access control (admin, readonly) for granular permissions
- 🍪 HTTP-only cookies with CSRF protection
- ⏱️ Rate limiting and comprehensive audit logging
The system maintains a rich relational model:
- Repositories: Source control repos (GitLab/Azure DevOps)
- Files: Source code files with content hashes
- Symbols: Functions, classes, variables with AI enrichment
- Relations: Inherits, implements, calls, references, imports
- Services: Detected APIs, workers, libraries
- EfEntities: Entity Framework → database table mappings
- Embeddings: pgvector embeddings for semantic search
- Chunks: Code chunks (function/class level) for RAG
Total Tables: 14 with optimized indexes, cascading deletes, unique constraints
Get up and running in 5 minutes with Docker Compose.
- 🐳 Docker & Docker Compose installed
- 🐍 Python 3.11+ (for local development)
- 🔑 GitLab or Azure DevOps access token
# Clone the repository
git clone https://github.com/ali-kamali/Axon.MCP.Server.git
cd axon.mcp.server
# Copy environment template
cp .env.example .envEdit .env with your credentials:
# Source control (choose one)
GITLAB_TOKEN=glpat-xxxxxxxxxxxxxxxxxxxx
# OR
AZUREDEVOPS_PASSWORD=your-azure-devops-pat
# Security (generate strong keys)
ADMIN_API_KEY=$(python -c "import secrets; print(secrets.token_urlsafe(32))")
ADMIN_PASSWORD=your-secure-password
# Optional: AI enrichment (for LLM-generated code summaries)
OPENROUTER_API_KEY=sk-or-v1-xxxxxxxxxxxxxxxx# Start all services (PostgreSQL, Redis, API, Workers, UI, Monitoring)
make docker-up
# Run database migrations
make migrate
# Verify health
curl http://localhost:8080/api/v1/health
# ✅ Expected: {"status":"ok"}| 🎯 Service | 🌐 URL | 🔐 Credentials |
|---|---|---|
| React Dashboard | http://localhost:80 | Login with ADMIN_PASSWORD |
| REST API Docs | http://localhost:8080/api/docs | X-API-Key: ADMIN_API_KEY |
| MCP Server | http://localhost:8001 |
For AI assistants (see MCP Tools) |
| Grafana | http://localhost:3000 | admin / admin |
| Prometheus | http://localhost:9090 | No auth |
Next Steps:
- 📊 View the React Dashboard and add your first repository
- 🔍 Try a semantic search: "Find all authentication controllers"
- 🤖 Connect an AI assistant using the MCP server
- 📈 Monitor performance in Grafana dashboards
💡 Pro Tip: Check out the Development Guide for local development setup and testing.
The main purpose of Axon MCP Server is to provide deep code intelligence to AI-powered IDEs:
- Contextual Code Completion: AI understands your entire codebase structure
- Intelligent Chat: Ask questions about architecture, dependencies, and implementation details
- Semantic Code Search: Find code by what it does, not just what it's called
- Refactoring Assistance: AI knows all usages across your entire codebase
- Vibe Coding Intelligence: Deep understanding of code patterns and architecture
- Cross-Repository Context: Work with multiple projects seamlessly
- Smart Code Generation: AI suggestions based on your actual codebase patterns
- Real-Time Documentation: Instant explanations of complex code sections
- Claude Desktop: Ask natural language questions about your codebase
- ChatGPT with MCP: Deep code analysis and architectural insights
- Custom MCP Clients: Build your own AI-powered dev tools
- Onboarding: New developers can ask "How does authentication work?" and get comprehensive answers
- Code Review: AI-assisted review with full context of dependencies and impacts
- Documentation: Auto-generated explanations for complex modules
- Impact Analysis: "What breaks if I change this API?" with complete dependency traces
- Architecture Visualization: Auto-generated service dependency diagrams
- Design Pattern Detection: Identify patterns and anti-patterns across the codebase
- Technical Debt Analysis: Find complex, tightly-coupled code sections
- Migration Planning: Understand all dependencies before major refactors
- Overview - System architecture and core components
- Data Models - Database schema and relationships
- Infrastructure - Deployment and scaling
- Setup Guide - Prerequisites and installation
- Development Guide - Dev environment setup and testing
- Deployment Guide - Docker and Kubernetes deployment
- Security Guide - Security features and best practices
- REST API Reference - API endpoints and usage
- MCP Tools Reference - MCP tools for AI assistants
- Configuration - Environment variables
- Troubleshooting - Common issues and solutions
# Install dependencies
make dev-install
# Run tests
make test
# Start API (dev mode with hot reload)
make api-dev
# Start MCP server
make mcp-dev
# Start UI
make ui-dev
# Lint and format
make lint
make format- Hybrid Intelligence: Syntactic (Tree-sitter) + Semantic (Roslyn) analysis
- AI-First Design: Built specifically to feed AI assistants with code context
- Production-Grade: Real auth, monitoring, distributed processing, caching
- Multi-Source: Supports GitLab and Azure DevOps
- Deep C# Support: Compiler-grade analysis via Roslyn
- Semantic Search: Vector embeddings enable "find similar code" queries
- Architectural Awareness: Detects services, APIs, entities—not just functions
This project is actively maintained and continuously evolving. Here's what's on our horizon:
- API Authentication: JWT tokens + API keys for hybrid auth scenarios
- Hybrid Authentication: UI login with cookies + programmatic API key access
- Memory Optimization: Keyset pagination for efficient large dataset handling
- Vector Search: Semantic code search powered by pgvector embeddings
- Multi-Language Support: Python, JavaScript, TypeScript, C# (via Roslyn)
- Roslyn Process Manager Refactor: Improved stability and resource management
- Pipeline Pattern Refactor: More modular and testable processing architecture
- RAG Pipeline: Ask natural language questions about your codebase ("How does auth work?")
- Architecture Visualization: Auto-generate Mermaid/PlantUML diagrams from code structure
- Impact Analysis Tool: See what breaks before you change it ("What depends on UserService?")
- Conversation Memory: Multi-turn AI conversations with context retention
- AI Test Generation: Automatically generate unit tests for your code
- Code Review Assistant: AI-powered PR reviews with security and quality checks
- Complexity Heatmaps: Visual complexity analysis to identify refactoring candidates
- Dependency Audit: Track and visualize package dependencies and vulnerabilities
- Language Expansion: Java, Go, Rust, Ruby, PHP support
- IDE Plugins: Native plugins for VS Code, JetBrains IDEs
- Collaboration Features: Team annotations, shared searches, codebase bookmarks
💡 Have a feature idea? Open an issue on our GitLab repository!
Axon.MCP.Server is dual-licensed to ensure sustainability and rapid development.
This project is free software under the GNU Affero General Public License v3.0 (AGPLv3).
- Best for: Open-source projects, hobbyists, researchers, and educational use.
- The Rule: If you modify this code or use it in a service accessible over a network, you must open-source your own project under the same AGPLv3 license.
- Details: See the LICENSE file for complete terms.
Want to integrate Axon into a proprietary/closed-source product?
- Best for: Startups, Enterprises, and SaaS products who cannot open-source their code.
- Benefits:
- Release your product under your own proprietary license
- No requirement to share your source code
- Priority support and direct access to the maintainer
- Legal indemnification options
- Custom features and integrations
📩 Contact us to acquire a commercial license.
We believe in open source and sustainability. The AGPLv3 ensures the community benefits from improvements, while commercial licenses fund continued development, comprehensive testing, and enterprise features that benefit everyone.
We welcome contributions from the community! Whether it's bug fixes, new features, or documentation improvements, your help makes this project better.
Since this project is dual-licensed, we must ensure we have the legal right to distribute contributions.
Before merging any PR, we ask contributors to reply to a comment saying:
"I hereby assign copyright of this contribution to the project maintainers and agree to the terms of the Contributor License Agreement."
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
- 📘 Development Guide - Setup, coding standards, and best practices
- ✅ Code Quality: We use Black, mypy, and pylint for code quality
- 🧪 Testing: Maintain >80% test coverage for all new code
- 🔄 Pull Requests: Follow our PR template and ensure CI passes
Need help or want to discuss features?
- 🐛 Bug Reports: GitHub Issues
- 📖 Documentation: Browse the
docs/directory - 💬 Community: Join us on
#axon-mcp-server(internal Slack) - ❓ Questions: Open a discussion or issue on GitHub

