Skip to main content
Glama
SecondLifes

CodeIntel MCP Server

by SecondLifes

🧠 CodeIntel

A local-first, hybrid (semantic + keyword) code-intelligence tool for Delphi/Pascal codebases β€” and ~45 other languages β€” with a RAG chat panel and a 17-tool MCP server for AI coding agents.

πŸ‡ΉπŸ‡· TΓΌrkΓ§e License: Apache 2.0 Python FastAPI Qdrant Ollama MCP Claude Code

πŸ‡ΉπŸ‡· TΓΌrkΓ§e Β· Contributing Β· Code of Conduct Β· Security Β· Acknowledgments

Overview

πŸ“‹ Index


Related MCP server: codecortex

πŸ’‘ What is this project?

CodeIntel is not an AI-behavior rules kit β€” it's a real, running application: a FastAPI backend + Qdrant vector database + Ollama local LLM, wired together into a code-search-and-understanding tool that grew out of indexing large Delphi libraries (UniDAC, ~25,000 chunks) and now generalizes to dozens of languages.

It answers questions a codebase search box normally can't:

  • βœ… Hybrid search β€” dense (semantic) + sparse (BM25 keyword) fusion via Qdrant's RRF, with name-match boosting and an optional cross-encoder rerank pass

  • βœ… RAG chat with real citations β€” "Cevapla" mode answers from the top-K matches; "Derin" (deep research) mode pulls the full body of the primary symbol plus its callers/callees/type-hierarchy/unit-dependencies into one context pack before answering

  • βœ… Agent-ready via MCP β€” 17 tools (search, explain, relations, impact analysis, context packs...) served over stdio and LAN-exposed Streamable HTTP, so Claude Code/Codex CLI/Gemini CLI can query the same index the web panel uses

  • βœ… Self-documenting β€” generates a full multi-chapter HTML/PDF/DOCX manual per collection, with AI-assisted TR/EN translation

Say goodbye to grep-and-hope across a 25,000-chunk Delphi codebase, or asking an AI agent to "explain this" with zero context beyond the file you happened to have open.


πŸ€” Why use it?

Without CodeIntel

With CodeIntel

grep/full-text search only, no semantic matching

Hybrid dense+sparse search, Turkish query ↔ English/Delphi code both work

An AI agent sees only the file you pasted

MCP tools give it the full call graph, type hierarchy, and unit dependencies on request

"Which of these 6 near-duplicate Split functions is safest?" β€” nobody knows without reading all 6

The comparison table asks the LLM to score stability/performance for every candidate, side by side

Re-reading old commits to understand why code changed

analyze_impact correlates a diff range against affected chunks

Manually writing/maintaining developer docs

document_unit/the manual generator produce and cache them, refreshed on demand


🌟 Core Capabilities

Core Features

  • Hybrid RRF search across multiple collections at once, with per-language filters, cross-encoder reranking, and a "why this ranked here" breakdown per result.

  • RAG chat (/api/ask, /api/ask/stream) and deep research (/api/research/stream, token-budgeted context packs) β€” both SSE-streamed, both cached, both truncation-aware (surfaces Ollama's own done_reason instead of silently returning a cut-off answer).

  • Function comparison table (/api/compare) β€” when a query surfaces several implementations doing the same job, one LLM call scores each for stability/performance with a one-line rationale.

  • Symbol graph β€” inheritance, find_references, caller/callee edges, stored in its own internal collection (not embedded in every point's payload, so it scales independently of the code collection's size).

  • Git provenance + impact analysis β€” correlate a commit range against the chunks it touched.

  • Auto-generated manual β€” per-collection HTML/PDF/DOCX documentation, collapsible class-tree sidebar, self-hosted syntax highlighting (no CDN dependency), AI-assisted bilingual (TR/EN) translation.

  • Duplicate-code detection β€” threshold-based similarity scan over already-indexed embeddings (no re-embedding needed).

  • Atomic, resumable indexing β€” staging+alias generation model (reindex builds in a separate collection, only swapped in atomically once complete and verified), persistent job queue survives a restart mid-index.

  • Owner/Group registry, API keys with read/admin role separation, rate limiting, audit log β€” the same panel supports single-operator local use and LAN-shared multi-key access.


🌐 Supported Languages

A generic Tree-sitter-based engine covers ~45 languages structurally; 8 languages have deep support (parent/child AST splitting for nested class methods, uses/import extraction, unit-head parsing): Delphi/Pascal, Python, C#, C/C++, Java, JavaScript/TypeScript, Go, Rust.


πŸ€– MCP Tools (for AI Agents)

src/mcp_server.py exposes 17 tools over stdio (default) and optionally LAN-facing Streamable HTTP β€” every tool also has a REST test endpoint under /api/mcp/* (parity enforced by tests/test_api.py::test_mcp_rest_parity), tried live from static/api.html.

Tool

Purpose

search_code

Hybrid search with language/kind/unit filters

find_similar

Nearest neighbors of a given chunk

read_unit

Full content of a source file (unit)

get_chunk

A single chunk's full payload

get_relations

Caller/callee/same-file relations

explain_chunk

Fast or deep LLM explanation (cached)

review_code

LLM code review of a chunk

propose_edit

Show-only diff suggestion (never auto-applies)

ask_domain_model

Route a question to a domain-specific model (e.g. SQL)

get_type_hierarchy

Ancestors/descendants of a type

find_references

All references to a name across a collection

analyze_impact

Correlate a git diff range with affected chunks

get_unit_deps

uses/import dependency graph for a file

get_context_pack

Token-budgeted, multi-source context bundle for a task

document_unit

Generate/fetch cached documentation for a file

list_domain_models

List configured domain-specific models

list_collections

List indexed collections and their stats


πŸ“‚ Project Structure

code-intel/
β”‚
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ retrieval.py          # Core search/RAG/explain logic β€” shared by panel AND mcp_server, never duplicated
β”‚   β”œβ”€β”€ chunker.py            # Tree-sitter multi-language chunking
β”‚   β”œβ”€β”€ manual.py             # Documentation generator (HTML/PDF/DOCX, i18n)
β”‚   β”œβ”€β”€ mcp_server.py         # 17 MCP tools, stdio + Streamable HTTP
β”‚   β”œβ”€β”€ panel.py              # FastAPI app entrypoint + security_guard middleware
β”‚   β”œβ”€β”€ api/                  # Modular routers: search, index, admin, manual, mcp
β”‚   └── services/             # Shared state, profiles, API keys, backups, indexing pipeline
β”‚
β”œβ”€β”€ static/
β”‚   β”œβ”€β”€ index.html            # Search + chat panel
β”‚   β”œβ”€β”€ settings.html         # Collection/index management
β”‚   β”œβ”€β”€ api.html               # REST + MCP tool tester
β”‚   └── viewer.html           # Standalone file viewer
β”‚
β”œβ”€β”€ tests/                    # pytest β€” most tests need a live Qdrant (@needs_qdrant, skip not fail)
β”œβ”€β”€ tools/                    # start-system.ps1 / stop-system.ps1 / install-autostart.ps1
β”œβ”€β”€ qdrant-bin/                # Qdrant binary (Windows)
β”œβ”€β”€ mcp-config.json           # MCP server defaults (Qdrant/Ollama URLs, model names)
β”œβ”€β”€ requirements.txt          # Pinned dependency versions (see the onnxruntime-gpu note inside)
└── pyproject.toml

Not included in this copy: data/ (Qdrant storage + chunk caches), .venv/, backups/, logs/ β€” all regenerated locally, all .gitignored.


πŸ”§ Prerequisites

  • Python 3.12+

  • Qdrant (bundled binary under qdrant-bin/, or run your own)

  • Ollama β€” for chat, deep research, explanations, translation, and the comparison table

  • PowerShell 7+ (pwsh) β€” tools/start-system.ps1/stop-system.ps1 are PowerShell scripts (Windows-first; the Python/FastAPI core itself is cross-platform)

  • A CUDA-capable GPU is optional but strongly recommended for embedding throughput (see requirements.txt's onnxruntime-gpu pinning note)


⚑ Quick Start

# 1. Install dependencies (pinned versions β€” see requirements.txt's onnxruntime-gpu note)
uv pip install -r requirements.txt --python .venv/Scripts/python.exe

# 2. Start Qdrant + Ollama + the panel (Windows)
pwsh tools/start-system.ps1 -NoBrowser

Then open http://127.0.0.1:8500 β€” index a folder from Settings, then search/chat from the main page. To use it as an MCP server instead of (or alongside) the panel, point your AI CLI's MCP config at src/mcp_server.py (stdio) β€” see mcp-config.json for the defaults it reads (Qdrant/Ollama URLs, fast/deep model names).

pytest tests/ -q   # needs a live Qdrant (tools/start-system.ps1) for most tests; the rest skip cleanly

πŸ” Security Posture

Binds to 127.0.0.1 by default; LAN exposure is opt-in via role-separated API keys (read/admin). See SECURITY.md for the full threat model, including two fixes worth knowing about if you're auditing this codebase: a client-controlled outbound-URL (SSRF) restriction added 2026-07-25, and an HTML/JS-context-aware escaping fix for the same date (plain &<>-only escaping is not sufficient inside an onclick="fn('...')" attribute β€” see escJs()/_esc_js()).


🎯 Design & Philosophy

Design & Philosophy

Verify, don't assume. Every fix recorded in this codebase's git history β€” the SSRF restriction, the escaping fix, the atomic-import redesign, the check-then-set race fix β€” was proven with a test that fails against the old code and passes against the new, not just reasoned about and left untested. The same discipline extends to search ranking (tests/eval.py's golden-query benchmark) and to answers themselves (both chat modes report Ollama's own truncation signal rather than presenting a silently cut-off response as complete). The deliberate tradeoff: slower to ship a fix than "looks right on read," in exchange for a codebase where "the tests pass" actually means something.


πŸ™ Acknowledgments

See ACKNOWLEDGMENTS.md / ACKNOWLEDGMENTS.tr-TR.md for the open-source projects and models this tool is built on.


🀝 Contributing

See CONTRIBUTING.md / CONTRIBUTING.tr-TR.md.


Made with care by Emrah BAŞPINAR & Recep Eymen BAŞPINAR.

Contributing Β· Code of Conduct Β· Security Β· Acknowledgments

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

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (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/SecondLifes/code-intel'

If you have feedback or need assistance with the MCP directory API, please join our Discord server