Skip to main content
Glama

Code Intelligence MCP Server ๐Ÿง 

Python 3.11+ License: MIT MCP Coverage

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-code

2. Installation

Choose one of the following methods to set up the project:

Best for active development and staying up to date.

git clone https://github.com/nairraf/code-intel.git
cd code-intel
uv sync

Option B: Download Release (Quick Start)

Best for a one-time setup or if you don't have Git installed.

  1. Download the latest Source ZIP or Tarball.

  2. Extract the archive to your desired location.

  3. 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/exclude patterns 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-intel helps 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.

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

search_code

Token Saver: Feeds the AI only the specific logic it needs to solve a task.

get_stats

Strategic Overview: Identifies "Dependency Hubs" and "High-Risk" areas.

find_definition

Precise Navigation: Jumps straight to the source of any symbol.

find_references

Impact Analysis: Helps the AI understand side-effects across files.

refresh_index

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 AuthenticationService is 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 (ollama serve).

"Model Not Found"

Run ollama pull for the Jina model.

"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/exclude glob 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

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
1Releases (12mo)
Commit activity

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

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