cindex
Provides a search_code tool for coding agents to perform local, offline semantic code search on a tree-sitter AST indexed codebase using GGUF embeddings, with no network calls or API keys.
README
cindex
Local, offline semantic code search: tree-sitter AST chunks → local GGUF embeddings (Qwen3-Embedding-0.6B via llama-server) → SQLite → brute-force vector search → CLI + MCP tool for coding agents. No network calls, no API keys. The index is content-addressed, so unchanged code is never re-embedded — reformatting a repo or moving files/functions costs zero inference.
What gets indexed: Python, C++, JavaScript (AST chunks: functions, class skeletons with bodies stripped, merged top-level blocks), Markdown (heading sections), plain text (100-line windows). Other file types are currently skipped (see roadmap).
Setup
macOS
git clone <this-repo> && cd code-indexer
uv sync # install python deps from the lockfile
brew install llama.cpp # provides llama-server
Linux
git clone <this-repo> && cd code-indexer
curl -LsSf https://astral.sh/uv/install.sh | sh # if uv is not installed
uv sync
# llama.cpp: use a prebuilt release from https://github.com/ggml-org/llama.cpp/releases
# or build from source:
git clone https://github.com/ggml-org/llama.cpp && cd llama.cpp
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release -j
sudo cp build/bin/llama-server /usr/local/bin/ # or add build/bin to PATH
cd ..
Model weights (both platforms, one time, ~630 MB, gitignored)
uv tool install "huggingface_hub[cli]"
hf download Qwen/Qwen3-Embedding-0.6B-GGUF Qwen3-Embedding-0.6B-Q8_0.gguf --local-dir models/
Starting it
Terminal 1 — the inference server. Leave it running; Ctrl-C stops it.
uv run cindex serve
Always start llama-server through cindex serve: it pins flags the client depends
on (--pooling last -ub 4096 -b 4096; without -ub the server crashes on long
inputs — details in docs/llama-server-pinned.md).
Terminal 2 — build the index, then query.
uv run cindex init # create the database (one time)
uv run cindex index # embed the repo; re-run any time, only changes cost inference
uv run cindex query "where do we decide if a file needs re-embedding" -k 5
Every command fails fast with the fix in the message (server down, no index yet, model/config mismatch), so if something's wrong the output says what to run.
Using it
uv run cindex query "natural language question" # top 8 by meaning
uv run cindex query "..." -k 3 # fewer results
uv run cindex query "..." --path src/ # restrict to a subtree
uv run cindex query "..." --no-instruct # raw query embedding (A/B)
uv run cindex index # refresh after editing code
Results are score file:start-end [chunk-type] symbol plus the live snippet read
from disk. Stale results self-heal: if a file changed since indexing, the hit is
re-indexed inline and correct line numbers are returned.
Multiple indexes (one config = one root = one database)
The default config.toml indexes this repo. To index any other tree, copy
documents.toml's pattern — set root (relative to the config file) and a
distinct db — and pass --config:
uv run cindex --config documents.toml index # workspace-wide index
uv run cindex --config documents.toml query "..." --path 6106 # scope to one project
Querying the default config only searches this repo; if you expected results from
a sibling project, you queried the wrong index — add --config.
Agents (MCP)
Opening this repo in Claude Code auto-registers the search_code tool via the
committed .mcp.json (approve the server when prompted). AGENTS.md instructs
agents to prefer it over grep for meaning-based lookup. Requirements: cindex serve
running; the MCP server creates/updates the index itself at session start and
repairs stale files lazily at query time.
To give agents in ANY directory a workspace-wide index, register at user scope:
claude mcp add cindex --scope user -- uv --directory /abs/path/to/code-indexer run cindex --config documents.toml mcp
Agents can pass path_prefix to search_code to stay inside one subproject.
Upcoming improvements
- More languages — TypeScript, Go, Rust, Java: each is one tree-sitter wheel +
one walker extension entry + one chunker
LangSpec. - Catch-all indexing — unknown text file types as blob windows so nothing is invisible, just coarser.
- Chunker versioning — stamp
chunker_versionin meta and force re-chunk on upgrade (today an unchanged file keeps its old chunking). - Finer prose chunking — paragraph windows for
.txtinstead of 100-line blobs. - ANN search (sqlite-vec) once brute-force matmul exceeds ~50 ms (~10⁶ chunks).
- int8 quantization — the
encodingcolumn is already reserved for it. - Watcher daemon — filesystem events instead of explicit
cindex index. - Hybrid ranking — path/symbol signal fused at rank time (never into content vectors), plus optional reranker.
- Bench harnesses — speed + recall regression tracking with tagged baselines.
- GPU offload flags — config-only change when needed.
Layout
src/cindex/ config db walker hasher chunker embedder indexer search resolver cli mcp_server
docs/ llama-server-pinned.md — the pinned inference server contract
config.toml default index (this repo) · documents.toml — example second index
.mcp.json wires Claude Code to `cindex mcp` · AGENTS.md — usage instruction for agents
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。