corvidex-mcp
An RTL-centric RAG and indexing MCP.
An MCP (Model Context Protocol) server that gives coding agents high-quality semantic search over an organization's HDL code (VHDL, Verilog, SystemVerilog), HDL-related documentation, and general source code (C/C++, Python, ...) — all cross-referenced, all with exact source attribution.
Runs as an MCP server over stdio (pip install corvidex-mcp, see
Quick start). No external
services required: the vector store (SQLite + the sqlite-vec
extension) runs embedded and the embedding models run locally (ONNX
via FastEmbed). Zero configuration required: point your MCP client
at it and it indexes the directory you started your agent in.
Intended use
The main uses are RAG and cross-referencing code against documentation, for coding agents (Claude Code, Maki, or any MCP client) that implement or modify HDL (VHDL, Verilog, or SystemVerilog).
RAG (Retrieval-Augmented Generation). RAG is a technique for
keeping a language model grounded in your material instead of only
its training data: before (or while) the model generates an answer, it
first retrieves relevant chunks from a knowledge base and uses those
as context. For a coding agent, that means the context it needs
usually lives outside the file it is editing — the company's coding
standards, design guides, and reference IP from earlier projects.
corvidex-mcp is that retrieval layer: it maintains an up-to-date,
semantically searchable index of your repositories and hands the
agent the verbatim text (with exact repository, file, line range, and
commit) of every match, so the agent grounds its work in what the
organization actually wrote instead of hallucinating a plausible
pattern.
Cross-referencing code against documentation. This is what makes
the search more than three separate indexes: every chunk stores the
identifiers it defines or references (symbols), so the agent can
bridge the domains — and the HDL languages: a constant shared by a
SystemVerilog package, a Verilog module, and a VHDL entity is found
once and resolves to all of them. A standard that says
"asynchronous resets are named rst_n" can be checked against the
VHDL that actually uses rst_n and the C testbench that drives it; a
signal renamed in the RTL can be found in every doc section and test
function that still references the old name. In practice that means:
- Docs → code. Follow a convention from the standard to every VHDL construct and test function that implements it.
- Code → docs. Find the design rationale behind an implementation: given a process or function, which documentation section explains its convention.
- Consistency. Trace one identifier (e.g.
wr_ptr) across standard, RTL, and testbench so a rename or protocol change doesn't leave the domains out of sync.
Both uses rely on the index staying current: repositories are Git synced (branch-tracked or pinned to a tag/SHA) automatically in the background, so the context an agent retrieves reflects the code as it is, not a stale snapshot.
Capabilities
- Three indexed domains, one server. HDL source (VHDL, Verilog,
and SystemVerilog in one
hdlcollection, each chunk tagged with its language), documentation (Markdown/reST/text), and general code (C/C++, Python, ...) live in three SQLite collections (a vec0 vector table + an FTS5 full-text table each). Every query runs a hybrid (dense + full-text, RRF-fused) search: semantic similarity and exact identifier matching in one call. Ask aboutrst_nand you get it. - Query expansion and reranking. Queries are expanded with a
static RTL/HDL synonym lexicon before search (
clockalso matchesclk,genericalso matchesparameter, ...), and the fused candidates are reranked by a cross-encoder for higher precision than RRF fusion alone — both on by default and both degrade gracefully (a reranker that isn't provisioned yet falls back to the unreranked ranking rather than failing the search). - HDL-aware chunking. VHDL files are chunked per construct
(entity, architecture, process, package, function, component) using
the vhdl_ls language server
(
documentSymbolwith exact line ranges); Verilog and SystemVerilog are chunked by Veridian (module/program/interface, package, inner functions and tasks, normalized to the same cross-language model — module →design_unit,always_ff→process— with the server-native kind kept asnative_symbol_kind). Both have a structural line-scanner fallback for files with syntax errors, and a whole-file last resort so no HDL is ever lost. - Structure-aware chunking elsewhere. Documentation is chunked per heading section; general code is chunked per top-level function/class by tree-sitter (any language with a grammar), with file-scope gap chunks for uncovered top-level code.
- Cross-referencing. Every chunk payload stores the identifiers it
defines or references (
symbols). Search tools accept asymbolsfilter that matches chunks referencing the given identifiers — bridging docs ↔ HDL ↔ test code (e.g. find every construct that touchesfifo_write), and across HDL languages (e.g.FIFO_DEPTHin a VHDL generic, a Verilog localparam, and an SV package constant). - Optional HDL analyzers, graceful degradation.
vhdl_lsand Veridian are external binaries that are not bundled or installed by this server: each is located via its config path or onPATH, and when one is missing its files simply fall back to structural/generic parsing.repository_statusreports each analyzer's availability, version, and mode (lsporfallback). - Exact source attribution. Every result names repository, file,
line range, and commit;
get_sourcereturns the exact current file (or a line range) from the synced working tree. - Incremental, self-maintaining index. Repositories are synced from Git (clone/fetch/diff): only changed files are re-chunked and re-embedded. A background task keeps everything up to date; the tools can force a sync or a full reindex at any time.
- Graceful degradation. Failures are contained per repository and recorded in state; a broken repository never blocks the others or the server. A missing language-server binary degrades that analyzer to structural parsing (see above) instead of failing.
- Stdout is protocol-clean. All logging goes to stderr and a rotating log file, so the server is safe to run from any MCP host.
Quick start
Requirements: Python ≥ 3.12 and Git. vhdl_ls/Veridian are optional
(VHDL/Verilog files fall back to structural parsing without them). See
docs/configuration.md for the
full platform matrix, and
Installation for the PyPI and
air-gapped paths in full.
On Apple Silicon, Python 3.14 needs macOS 14+ (every onnxruntime
wheel for CPython 3.14 is tagged macosx_14_0_arm64); 3.12 and 3.13
resolve to an older onnxruntime that still supports macOS 13.
Install it, then register it with your MCP client — no config file needed.
$ pip install corvidex-mcp
Claude Code:
$ claude mcp add corvidex-mcp -- corvidex-mcp
Maki (TOML config — verify the exact table names against your Maki version's docs):
[mcp_servers.corvidex_mcp]
command = "corvidex-mcp"
Both assume the corvidex-mcp entry point is on your PATH, which is
the case after a pip install --user or an install into an active
environment. If you install into a virtualenv instead, give the
absolute path to its entry point — your MCP client spawns the server
itself and will not have that virtualenv activated:
$ claude mcp add corvidex-mcp -- /path/to/.venv/bin/corvidex-mcp
To track this repository rather than a release, swap the install for
pip install git+ssh://git@github.com/ru551n/corvidex-mcp.git; the
registration is identical.
The PyPI wheel is slim (1.3 MB): it downloads the embedding and reranker models (~0.86 GB) into its data directory on first run. For a host with no network at all there is a separate offline install — two downloads, a 537.4 MB wheel with all three models embedded (the same file for every platform) plus a ~52-71 MB dependency wheelhouse for your platform and Python version, with an installer and a self-verification command. Linux x86_64/aarch64, macOS on Apple Silicon and Windows x86-64 are covered, each on CPython 3.12, 3.13 and 3.14. It is not on PyPI: PyPI's 100 MB per-file limit is not raised for bundled model weights, so those assets are published on a GitHub Release instead. See Air-gapped installation.
That's it: the server indexes the directory it is started in.
Since your MCP client normally spawns it with your project as the
working directory, starting your agent inside your repository is
enough — a Git checkout is indexed as its working tree (HEAD plus
uncommitted and untracked changes), a plain directory as a bag of
files. Confirm what got indexed with the repository_status tool.
If you run the server from a local checkout rather than an installed
package, use uv --project /path/to/corvidex-mcp run corvidex-mcp and not
uv --directory ...: --directory changes the working directory, so
corvidex ends up indexing its own source tree instead of your code. Set
CORVIDEX_MCP_PROJECT_DIR to your workspace root if a launcher gets
this wrong and cannot be changed.
Don't want that? Disable it with --no-index-cwd on the command line,
or index_cwd = false in the config file, and run with an empty index
until you configure [[repositories]] explicitly. Need more than the
current directory — multiple repositories, a remote Git URL, a
coding-standards file, tuned embedding settings? See
docs/configuration.md; add a .corvidex
config file in the project's root (or point --config/
CORVIDEX_MCP_CONFIG elsewhere) and any [[repositories]] you
configure there take over from the zero-config default.
Usage
Tools
| Tool | What it does |
|---|---|
search_hdl(query, limit, repository, symbols, language, mode) |
Search over HDL source (VHDL, Verilog, SystemVerilog): design units (entities/modules), architectures, processes/always blocks, packages, functions, tasks. language filters by HDL language ("vhdl" for VHDL only). |
search_docs(...) |
Same over documentation sections. |
search_code(...) |
Same over general code units (functions/classes). |
search_knowledge(query, limit, ...) |
All three domains at once, RRF-fused. |
get_source(repository, file, start_line, end_line) |
Exact current file content (or a slice) with commit attribution. |
find_definition(repository, file, line, character) |
Exact, LSP-backed go-to-definition (vhdl_ls/Veridian), not similarity search. line/character are 0-based; results render as 1-based path:line:col. |
find_references(repository, file, line, character, include_declaration, limit) |
Exact, LSP-backed find-references for a symbol at a known position. Capped at limit (default 20) with a note giving the true total; include_declaration=False drops the declaration even when the language server ignores the LSP flag (vhdl_ls does). |
hover_info(repository, file, line, character) |
Exact, LSP-backed hover: the analyzer's own signature/type/doc text for the symbol at a position. |
find_symbol(query, repository?, limit) |
Exact, LSP-backed workspace/symbol name lookup, across one or every configured repository. |
repository_status() |
Per repository: sync state (IN PROGRESS / FAILED / pending / idle), ref, priority, domains, last indexed commit, last sync, last error — plus the HDL analyzer status (vhdl_ls, Veridian: available, version, lsp/fallback mode) and the per-collection embedding-model state. |
sync_repositories(repositories?) |
Incremental sync (default: all). Failures contained per repository. |
reindex_repository(repository) |
Drop and rebuild one repository's index. |
Which tool?
Cheapest and most exact first — a search costs one to two orders of magnitude more tokens than a navigation call, because every hit returns a whole indexed construct:
| You have | Use |
|---|---|
| An exact identifier, want its declaration | find_symbol |
A file:line:character, want the declaration / uses / type |
find_definition, find_references, hover_info |
| A concept, a question, or no name at all | search_hdl / search_docs / search_code |
| A question spanning docs + RTL + tests | search_knowledge |
| A known file, want its text | get_source (never a search) |
| No path | repository_files (never guess) |
Never search for an identifier you already know, and reach for
corvidex over grep/reading the working tree when the answer may live
in another repository, when the question is conceptual, or when the
coding standards are the answer.
All search tools take an optional repository (name) filter plus
symbols: list[str] — restrict results to chunks referencing any of
the given identifiers. search_hdl/search_knowledge additionally
accept language (e.g. "verilog") to restrict results by language.
Every search tool also takes mode: hybrid (default; semantic +
full-text, RRF-fused), semantic (embedding similarity only), or
lexical (full-text match only; no embedding involved). Results are
rendered as markdown with source attribution, score, language, and
referenced identifiers; HDL content is fenced by language.
What a result looks like
Each hit quotes the matched chunk with a 1-based line-number gutter
(the same numbering get_source uses), capped at 40 lines. When the
chunk is longer, the last body line is the exact follow-up call for the
rest — nothing has to be reconstructed by hand:
595 | architecture rtl of fifo is
596 | signal wr_ptr : unsigned(ADDR_W-1 downto 0);
…
… 158 more lines — get_source("common-ip", "rtl/fifo.vhd", 635, 792) for the full text
The displayed numbers are 1-based; find_definition, find_references
and hover_info take 0-based lines, so a line displayed as N is
passed to them as N - 1.
Two more things the response tells you:
scoreis the cross-encoder reranker's relevance in0..1when reranking is available (comparable across queries) — otherwise the store's rank-fused score, which is only comparable within one response. When the best reranked hit scores below ~0.05 the response opens with a line saying so and points atfind_symbol(exact names) or a rephrased query, instead of silently handing back eight junk hits.- A "more matches exist beyond
limit" note is appended only when further candidates really were found — never merely because the page is full.
Results nested inside a better-ranked result of the same file (a process inside the architecture that contains it) are dropped, so one response never quotes the same lines twice and the freed slot goes to a different file.
Example agent flow:
search_knowledge("asynchronous reset conventions")→ a docs section plus VHDL and Verilog constructs that implement resets.search_hdl("reset", symbols=["rst_n"])→ every HDL chunk touchingrst_n, in every HDL language.search_hdl("fifo", language="systemverilog")→ only SystemVerilog.get_source("company-standards", "rtl/reset_ctrl.vhd", 12, 40)→ the exact lines to copy.
Still indexing?
The server starts serving immediately; it does not wait for the initial sync to finish (that can take a while for a large repository — files need to be parsed, chunked, and embedded). While a repository hasn't completed its first sync yet, or is being (re)synced right now, search results start with a line like:
Note: currently syncing: my-repo. Results may be thin or incomplete; try again shortly.
Treat it as a cue to wait a few seconds and retry, not as "nothing
exists". Use repository_status to check indexing progress (and
whether a sync is failing outright rather than just running).
Configuration
Zero configuration is required (see Quick start). Once you need more — multiple repositories, a remote Git URL, a coding-standards file, embedding-model tuning, air-gapped installs — see docs/configuration.md for the full config file reference.
Development
$ uv sync
$ uv run ruff format -q . && uv run ruff check . # format + lint
$ uv run mypy src # strict types
$ uv run pytest -q # offline test suite
The test suite runs fully offline: local file:// git remotes, fake
LSP server scripts (vhdl_ls and Veridian), and fake embedding
providers (real-binary tests are gated on the VHDL_LS_TEST_BIN and
VERIDIAN_TEST_BIN environment variables).
CI (.github/workflows/ci.yml) runs on every push to main and on
pull requests: ruff format --check, ruff check, mypy (strict),
and the full test suite on Ubuntu and Windows (Python 3.12/3.13/3.14)
and macOS (CPython 3.14: uv's standalone 3.12/3.13 macOS interpreters
lack SQLite loadable-extension support, so the store-dependent tests
would skip wholesale there), plus RHEL 9 and RHEL 10 container jobs
(official UBI images; UBI 9's glibc 2.34 is the strictest floor in
the dependency wheel set).
Layout:
src/corvidex_mcp/
config.py typed config (pydantic) + default template
state.py atomic repository sync state (schema-versioned)
git_manager.py async clone/fetch/checkout + incremental SyncPlan
routing.py extension -> domain classification (+domains/excludes)
lsp/ LSP transport (server-agnostic) + vhdl_ls and Veridian
adapters + analyzer discovery/status
embeddings/ FastEmbed dense providers (per-collection, lazy)
vector_store.py sqlite-vec wrapper: hybrid (dense + FTS5) RRF query,
row filters
indexing/ vhdl (vhdl_ls), verilog (Veridian), docs (sections),
code (tree-sitter), pipeline (incremental sync driver)
retrieval.py search service: fusion, language filter, source access
server.py FastMCP tools + startup + periodic sync + lock
verify_offline.py `python -m corvidex_mcp.verify_offline`: index +
search with every socket refused (offline bundles)
Releasing
$ uv run --no-sync python tools/build_release.py --all # both artifacts
$ uv run --no-sync --with twine twine check dist/* # PyPI readiness
dist/ holds the slim wheel + sdist that go to PyPI; dist-offline/
holds the all-models wheel and one dependency wheelhouse per supported
target, which must never be uploaded there (that wheel is versioned
<version>+offline, which PyPI rejects outright).
Pushing a v* tag runs .github/workflows/release.yml, which first
runs the entire CI suite against the tagged commit — lint,
type-check, quality gate and the full OS/Python matrix, by reusing
ci.yml rather than copying it — and only then builds every artifact,
publishes dist/ to PyPI, and attaches everything to a draft
GitHub Release for a human to review and publish. A single red check
means nothing is built, drafted or uploaded at all. So tagging is the
irreversible step, not the Release:
$ git tag v0.1.0 && git push origin v0.1.0
PyPI never re-issues a version number, even after a delete, so a bad
tag costs a version. To rehearse without spending one, run the workflow
manually (workflow_dispatch): it builds and drafts the Release but
skips publishing entirely.
Upload needs no API token — the publish job authenticates by Trusted
Publishing, exchanging
GitHub's OIDC identity for a short-lived credential. PyPI ties that
trust to this repository and this workflow's filename, so renaming
release.yml breaks publishing until the publisher is updated on PyPI.
See
docs/configuration.md.
The offline side is a matrix — Linux x86_64/aarch64, macOS on Apple
Silicon and Windows x86-64, each on CPython 3.12/3.13/3.14 — but only
the wheelhouses vary: the 537 MB all-models wheel is py3-none-any and
is built once per release. Every wheelhouse is cross-downloaded from
one Linux runner (pip download --platform ... --python-version ...),
so no macOS or Windows runner is involved, and each is verified before
it is packed. --list-targets prints the matrix (and what is
deliberately left out, with the reason); --target <id> builds a
subset.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file corvidex_mcp-0.1.0.tar.gz.
File metadata
- Download URL: corvidex_mcp-0.1.0.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13cf421d1e5763ec0c72d30d310c7d19ac5ef899b01a736d15420d9776d97047
|
|
| MD5 |
4fd5e2861487eae6122a789eba040ccf
|
|
| BLAKE2b-256 |
30be3c91cf3397c045c757291c87c32a2a8d3a590c71ad73eece6e35ae7cd42a
|
Provenance
The following attestation bundles were made for corvidex_mcp-0.1.0.tar.gz:
Publisher:
release.yml on ru551n/corvidex-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
corvidex_mcp-0.1.0.tar.gz -
Subject digest:
13cf421d1e5763ec0c72d30d310c7d19ac5ef899b01a736d15420d9776d97047 - Sigstore transparency entry: 2809103708
- Sigstore integration time:
-
Permalink:
ru551n/corvidex-mcp@bdfe24d52c1e259ae64fec2bfefb4fe1f3b09712 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/ru551n
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bdfe24d52c1e259ae64fec2bfefb4fe1f3b09712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file corvidex_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: corvidex_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12c4ab0100b077012c7696bce3ebea4d6bac308c01fb123981e1a67e19568fe5
|
|
| MD5 |
e94980e2edcf607162591398613dd193
|
|
| BLAKE2b-256 |
01b44683f40dba651d6f2bfc5386c8df04bf5f239d44a1973f17b5b4147c5463
|
Provenance
The following attestation bundles were made for corvidex_mcp-0.1.0-py3-none-any.whl:
Publisher:
release.yml on ru551n/corvidex-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
corvidex_mcp-0.1.0-py3-none-any.whl -
Subject digest:
12c4ab0100b077012c7696bce3ebea4d6bac308c01fb123981e1a67e19568fe5 - Sigstore transparency entry: 2809103736
- Sigstore integration time:
-
Permalink:
ru551n/corvidex-mcp@bdfe24d52c1e259ae64fec2bfefb4fe1f3b09712 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/ru551n
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bdfe24d52c1e259ae64fec2bfefb4fe1f3b09712 -
Trigger Event:
push
-
Statement type: