Astroid (astroid-mcp)
High-performance, local FastEmbed ONNX vector + SQLite FTS5 Model Context Protocol (MCP) server for Astro documentation.
- Hybrid search: 384-dim BAAI/bge-small-en-v1.5 embeddings + SQLite FTS5 BM25, fixed candidate pools, deterministic rankings.
- Clean chunks: heading-aware splitting, tiny-section merging, cross-doc dedupe; every chunk fully inside the model's 512-token window (zero silent truncation).
- Native stdio: local execution, zero network ports.
- Additive-only installer: never rewrites your existing MCPs or settings.
Install (Windows and WSL — same package, simultaneously)
One wheel (py3-none-any) serves both OSes. Install it as an application
so the astroid command lands on PATH: pipx install or uv tool install.
Plain pip install / uv pip install only drops the library into a Python
environment (no command on PATH) — if you went that way by habit and get
astroid: command not found, reinstall with one of the two below.
What astroid install does — all three, every time:
- Registers the server in the global OpenCode config (one additive entry; sibling MCPs, comments, and formatting are preserved).
- Copies the prebuilt docs database into the per-OS user path (see table below). An existing database is left byte-identical.
- Downloads the embedding model (~70 MB, once per OS — shared with other MCPs using the same model) into the per-OS model cache (see table below).
Offline? The config entry still applies; the data steps print a skip line and happen on the first search instead — so the first answer is the slow one, never the install.
Windows (PowerShell):
pipx install astroid-mcp
# or: uv tool install astroid-mcp
astroid install
astroid search "routing" --limit 1 # verify: expect routing docs back
WSL / Linux (bash). The export line is one-time setup — persist it so
every new shell finds the command:
uv tool install astroid-mcp
# or: pipx install astroid-mcp
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
export PATH="$HOME/.local/bin:$PATH" # this shell only; new shells use .bashrc
astroid install
astroid search "routing" --limit 1 # verify: expect routing docs back
Close OpenCode first. It holds locks on the server executable and the database; installing, uninstalling, or reinstalling while it runs will fail or half-finish.
Each OS keeps its own database, model cache, and config (see paths
below). Never point the DB across the Windows/WSL boundary (/mnt/...):
SQLite locking is unreliable there and both sides will corrupt or stall.
No step above builds anything from source: the wheel already contains the database and the code, so install is copy + download + one config entry.
Per-OS paths
| What | Windows | WSL / Linux |
|---|---|---|
| Server executable | pipx venv Scripts\astroid.EXE (on PATH) |
pipx venv bin/astroid (on PATH) |
| Vector database | %USERPROFILE%\.astroid\astroid.db |
~/.astroid/astroid.db |
| Embedding model cache | %TEMP%\fastembed_cache |
$TMPDIR/fastembed_cache or ~/.cache/fastembed |
| Global MCP config | %USERPROFILE%\.config\opencode\opencode.jsonc |
~/.config/opencode/opencode.jsonc |
| Repo-local MCP config | <repo>\opencode.jsonc |
<repo>/opencode.jsonc |
Usage (commands run standalone — no uv/pip prefix needed)
astroid serve # boot the MCP stdio server (what OpenCode launches)
astroid search "routing" # test hybrid search in the terminal
astroid search "query" --category reference --limit 3
astroid install # global config, from anywhere (the simple default)
astroid install <path> # repo-local install into that directory
astroid install --global # explicit global (same as bare)
astroid uninstall # global entry + wipe DB + model cache (asks first)
astroid uninstall <path> # same, for that directory
astroid uninstall --global --yes # same, global scope, no prompt
astroid build --docs ./assets # rebuild the vector DB from markdown (rare)
Categories: tutorials, guides, examples, reference, migration.
install is additive-only: sibling MCPs, comments, and formatting in your
config are preserved (verified by test_installer.py). If your main config
file is unparseable, it is backed up, left untouched, and the entry goes
into a sibling opencode.json that OpenCode merges automatically.
uninstall is a full wipe of astroid artifacts only: our config entry, the
SQLite database, and our model-cache subtree. Note: the model subtree is
shared by name with other MCPs using the same embedding model — uninstalling
one forces the others to re-download (~70 MB) on next use. Self-healing, no
breakage. Everything else is left byte-identical. Removing the package
itself is a second, separate step — and order matters: astroid uninstall
first (it needs the CLI present), pip uninstall astroid-mcp second.
Reversed order strands the database with no tool to remove it.
Rebuilding the database
Only needed when the documentation sources change. From the source tree
(assets/ lives in this repo, so clones can rebuild anywhere):
astroid build --docs ./assets --db astroid/astroid.db
Release snapshot (v0.1.0 database, built 2026-09-07): 241 documents,
3,904 chunks, 23.24 MB (astroid/astroid.db, sha256 04674b47e5c1d6a7…).
Chunk budget 460 tokens + ~30-token embed prefix (zero silent truncation
past the 512-token wall). Determinism baselines (hybrid search, limit 3):
routing → Internationalization (i18n) Routing > routing (0.5654);
content collections → Content collections > What are Content Collections? (0.6227).
Expect per-batch log lines; a flat 0% for the first minutes is normal (model load). Run it yourself in a plain terminal (never from inside an agent session with a timeout).
WSL validation (no Windows crossover)
The wheel bundles one OS-portable database (relative paths, float32 blobs,
cross-platform SQLite). Install copies it into ~/.astroid/ and downloads
the model automatically; after installing the tool (see Install above,
including the one-time PATH line):
astroid install
astroid search "routing" --limit 1 # instant after provisioning
No build, no manual copy. What stays forbidden is running two servers
against one shared file across /mnt (locking) — each OS keeps its own
copy.
Troubleshooting
- First search is slow: install provisions the DB + model, so this only happens when install ran offline — the first search then fetches what is missing, and everything is local after that.
- First MCP answer times out once: the freshly spawned server loads the model on its first embed. Retry — the process is warm from then on.
astroid: command not foundafter install: you usedpip install/uv pip install(library into an environment, no command on PATH). Reinstall withpipx install astroid-mcporuv tool install astroid-mcp. On WSL/Linux, also check the one-time~/.bashrcPATH line from Install above (new shells need it).- Install/uninstall errors about locked files: quit OpenCode first.
- Unparseable config: the installer backs it up, leaves it alone, and prints the exact block to paste manually.
Release checklist (maintainers)
- Bump
versionin pyproject.toml (+ uv.lock) and commit + push code. - Only when the docs changed: rebuild the DB (
astroid build --docs ./assets --db astroid/astroid.db, filepaths stored relative, no machine paths leak), commit the DB +assets/(yes, the binary lives in git — it is the release artifact) and push. Code-only releases reuse the committed DB blob untouched. - Run both suites with the venv python directly.
uv build, then audit: wheel must containastroid/astroid.db(sha256 matches the committed blob), must not contain__pycache__.- Clean-venv trial with an isolated HOME: install the wheel, bare
installmust land global and provision data,astroid serve --helpexits 0, firstsearchanswers. - Publish, then validate with a real pipx/uv-tool install on each OS.
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 astroid_mcp-0.1.0.tar.gz.
File metadata
- Download URL: astroid_mcp-0.1.0.tar.gz
- Upload date:
- Size: 9.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d055a80ffab1aa0dfb25befca4bfb33f026ff3f640826f7fb529fe7089ef5e75
|
|
| MD5 |
c232585821535a5c198cf13f888001e8
|
|
| BLAKE2b-256 |
1923454a733e0b1d455354c49501ec8887885dba19ed0a7e0b7b0341086992d3
|
File details
Details for the file astroid_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: astroid_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7703062ff418f7bc396a2c8ed057efae09cbec64673ce7ffc2aa3c424c16f662
|
|
| MD5 |
96dac579387d5a3baf0ae59f14c2d055
|
|
| BLAKE2b-256 |
6c08866a466e14d2e73ecfd911d922e0c24ee6d01790d13680bf2cb6b0e22ffa
|