docctx
Local-first context retrieval engine that serves precise documentation chunks to coding agents via MCP, ensuring high-confidence context for code generation.
README
docctx
Local-first deterministic context retrieval engine for coding agents.
What is docctx?
docctx solves a specific problem: when a coding agent needs documentation, it delivers the most precise chunks from the most trusted sources — with explainable ranking — or returns nothing.
Key principle: Wrong context is more dangerous than no context. An agent with no docs knows it doesn't know. An agent with wrong docs confidently generates wrong code.
Installation
# Install with uv (recommended)
uv pip install -e .
# Or with pip
pip install -e .
Quick Start
# Add documentation
docctx add https://react.dev/reference/react/useEffect
# List packs
docctx list
# Query documentation
docctx query "useEffect cleanup"
# Start MCP server
docctx serve
CLI Commands
| Command | Description |
|---|---|
docctx add <url> |
Ingest a URL as a context pack |
docctx refresh <pack> |
Re-crawl an existing pack |
docctx remove <pack> |
Hard delete a pack |
docctx list |
List all packs |
docctx query "<query>" |
Search documentation |
docctx inspect <url|pack> |
Inspect extraction or pack structure |
docctx explain "<query>" |
Show retrieval reasoning |
docctx doctor |
Health check |
docctx serve |
Start MCP server |
MCP Configuration
Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"docctx": {
"command": "docctx",
"args": ["serve"]
}
}
}
Or with uv run:
{
"mcpServers": {
"docctx": {
"command": "uv",
"args": ["run", "--project", "/path/to/docctx", "docctx", "serve"]
}
}
}
MCP Tools
search_docs— Search chunks. Supportsresponse_mode: compact|standard,token_budget,min_confidence: high|low|anyget_chunk— Get full chunk content by ID. Lazy expansion aftersearch_docs.list_packs— Discover available documentation packs.
Configuration
Config file: ~/.docctx/config.toml (auto-created on first run)
[retrieval]
floor_score = 3.0 # BM25 minimum to include
confidence_cutoff = 6.0 # BM25 threshold for "high" confidence
default_limit = 5
max_limit = 10
[chunking]
target_tokens = 400
max_tokens = 800
min_tokens = 80
[ingestion]
rate_limit_rps = 1.0
max_pages = 50
max_depth = 2
respect_robots = true
Scope Rules
| Scope | Crawls |
|---|---|
page-only |
Entry URL only |
siblings |
Entry URL + sibling pages (same parent path) — default for deep URLs |
subtree |
Entry URL + all descendants |
site |
Entire domain (requires --scope site) |
Development
# Install dev dependencies
uv pip install -e ".[dev]"
# Run tests
pytest
# Run specific test file
pytest tests/unit/test_chunker.py -v
Architecture
INGESTION (CLI, network):
URL → Discover → Fetch → Extract → Chunk → Index → DB
SERVING (MCP, offline):
Query → FTS5 → Boost → Filter → Threshold → Chunks
Storage: ~/.docctx/store.db (SQLite WAL)
Cache: ~/.docctx/cache/ (SHA256-keyed HTML)
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.