code-intel
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@code-intelFind all functions that call the database connection."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Code Intelligence MCP Server ๐ง
Give your AI agents a "brain" that actually understands your codebase. This Model Context Protocol (MCP) server provides high-performance semantic search and deep code insights, making it easier for AI tools to navigate, understand, and modify complex projects.
This is not just a search tool; it is an analysis engine. While standard Indexers just treat files as pure text, code-intel parses your codebase into a living knowledge graph. It maps abstract syntax trees (ASTs), dynamic dependencies, and architectural patterns, allowing your AI to enforce strict methodologies, understand blast radiuses, and confidently pair-program on enterprise-grade software.
๐ Quick Start
1. Prerequisites
Install Ollama and pull the high-precision embedding model:
ollama pull unclemusclez/jina-embeddings-v2-base-code2. Installation
Choose one of the following methods to set up the project:
Option A: Clone the Repository (Recommended)
Best for active development and staying up to date.
git clone https://github.com/nairraf/code-intel.git
cd code-intel
uv syncOption B: Download Release (Quick Start)
Best for a one-time setup or if you don't have Git installed.
Download the latest Source ZIP or Tarball.
Extract the archive to your desired location.
Open a terminal in the folder and run:
uv sync
3. MCP Configuration
Add the following to your AI client's MCP settings (e.g., Claude Desktop, Cursor, or Antigravity mcp_config.json). Replace /path/to/code-intel with the absolute path to this project.
{
"mcpServers": {
"code-intel": {
"command": "uv",
"args": ["run", "--quiet", "--directory", "/path/to/code-intel", "python", "-m", "src.server"],
"env": { "PYTHONUNBUFFERED": "1" }
}
}
}Related MCP server: CodeGraph
๐ฏ Unique Advantages for Structured Engineering
While many tools offer basic semantic search, code-intel is purpose-built to enforce strict architectural rules and support advanced software engineering methodologies:
Project Pulse & Health Metrics: Go beyond simple search. The internal engine actively identifies "Dependency Hubs" and "High-Risk Symbols" (files with high complexity but low test coverage), guiding refactoring efforts and enforcing test-gated workflows.
Deep Framework Analysis: Standard indexers often fail at mapping dynamic patterns. This server specifically tracks dynamic dependency injection (like Python's
Depends()) and framework-specific middleware, allowing developers to keep business logic pure and fully mockable.Targeted Re-Indexing: Working in a massive mono-repo? You don't need to re-index the entire universe. Use targeted
include/excludepatterns to update the knowledge graph on-the-fly for only the microservice or module you are actively developing.Contract-First Validation: By exposing the precise call graph and interface definitions,
code-intelhelps validate that implementations adhere to established API contracts and structural patterns before code is committed.
๐๏ธ Technical Architecture
Code Intelligence uses a Two-Pass Indexing strategy to map your codebase into a hybrid search system.
graph TD
A[Project Root] --> B[File Scanner]
B -->|Pass 1| C[Tree-sitter Parser]
C --> D[Extraction: Symbols, Types, Defs]
D --> E[Ollama Embeddings]
E --> F[LanceDB Vector Store]
B -->|Pass 2| G[Symbol Linker]
G --> H[Knowledge Graph]
H --> I[Edges: Calls/Imports]
J[AI Client] --> K[MCP Server]
K --> L[Hybrid Query Engine]
L --> F
L --> Hโจ Key Features
Intelligent Caching
Our embedding cache drastically reduces latency. By storing "fingerprints" of your code locally, we avoid re-calculating embeddings for unchanged files, making searches nearly instantaneous.
Semantic "Meaning-Based" Search
Go beyond simple keyword matching. Search for concepts like "how do we handle user authentication?" and find the relevant logic even if the exact words aren't used.
Cross-File Architecture Graph
A persistent knowledge graph tracks imports and function calls across your entire project. This enables precise "Jump to Definition" and "Find References" that work reliably across many files, including advanced structural tracking for Dart widget instantiations and Python dependency injection (Depends()).
Security & Quality Hardened
Independently audited and remediated against OWASP Top 10 vulnerabilities. Includes robust sanitization for vector filters, safe JSON-based serialization, and strict path containment.
๐ ๏ธ Tools & Tools Usage
Tool | Benefit to Cloud AI |
| Token Saver: Feeds the AI only the specific logic it needs to solve a task. |
| Strategic Overview: Identifies "Dependency Hubs" and "High-Risk" areas. |
| Precise Navigation: Jumps straight to the source of any symbol. |
| Impact Analysis: Helps the AI understand side-effects across files. |
| On-Demand Sync: Manually triggers a scan to update the code map. |
๐ก Example AI Prompts
Try asking your AI agent:
"Give me a high-level overview of the dependency hubs in this project and identify any potential technical debt."
"Find where the
AuthenticationServiceis defined and show me all the places it is referenced.""How does this project handle error logging across different modules?"
๐ Supported Languages
While we support 80+ languages via Tree-sitter, we provide optimized resolution for:
Python (Advanced import resolution, FastAPI/Flask dependency injection)
Dart / Flutter (Package resolution, Widget structural mapping)
TypeScript / JavaScript (ESM/CommonJS module resolution)
Go & Rust
๐ง Troubleshooting
Issue | Potential Solution |
"Connection Refused" | Ensure Ollama is running ( |
"Model Not Found" | Run |
"0 Chunks Indexed" | Ensure project root path is absolute and extensions are supported. |
Slow Performance | First-time indexing is resource-intensive; subsequent runs use the cache. |
๐ Recent Updates
Production Scaling: LanceDB table handle caching and batched SQLite transactions.
Robust Windows Support: Fixed concurrency race conditions and standardized path normalization.
Scope Tuning: Added
include/excludeglob patterns for specialized indexing.Security Hardening: Integrated automated secret scanning (Gitleaks) into CI.
Professional Standards: Added License, Release Automation, and Community Health files.
๐งช License & Contributing
License: MIT License
Contributing: See CONTRIBUTING.md
Conduct: See CODE_OF_CONDUCT.md
Security: See SECURITY.md
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nairraf/code-intel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server