docverity
MCP server that enables coding agents to check documentation claims against source code, detecting drift and suggesting fixes.
README
Docverity
AI made documentation rot an epidemic.

Code changes by the hour, and AI assistants only make it faster. Documentation does not keep up. Docverity reads your documentation, extracts the concrete claims it makes about the codebase, and checks each one against the source. Drift becomes a failing check in CI, the same way a broken test would.
Tools like doctest and mdbook test run the code blocks embedded in your
docs. Docverity verifies the prose around them: the flags, options, environment
variables, paths, and behavior your documentation describes are checked against
what the code actually does.
Three checks
Docverity runs three complementary checks:
- Reference checker — deterministic, no API key, instant. Catches docs that mention files, CLI flags, environment variables, or symbols that no longer exist anywhere in the source.
- Claim verifier — LLM-backed, catches prose-level semantic drift: "the
default timeout is 30s", "this returns a list", "set
FOO=barto enable X". Runs whenANTHROPIC_API_KEY(orANTHROPIC_AUTH_TOKEN) is set. - Coverage — the reverse direction: flags and environment variables the code uses that the docs never mention. On by default, reported as warnings.
Works free out of the box. Gets smarter with a key.
Every finding has a severity: error (a reader acts on it and gets burned)
or warning (real but not blocking). By default only errors fail the build, so
a slight issue is reported without breaking CI. Tune it with --fail-on.
Install
npm install -g docverity
Or run without installing:
npx docverity
Usage
From your repo root:
docverity
By default it checks README.md and every .md file under docs/. Pass files
explicitly to narrow the scope, and use -C to point at another root:
docverity -C path/to/repo
Skip the LLM engine for a fast, deterministic-only run:
docverity --no-llm
Options
| Flag | Description |
|---|---|
-C, --root <dir> |
Repo root to check (default: current directory). |
--no-llm |
Deterministic checks only; no API calls. |
--model <id> |
Model for the LLM engine (default claude-opus-4-8). |
--no-coverage |
Skip the code-to-docs check for undocumented flags/env vars. |
--fail-confidence <n> |
Minimum confidence (0..1) to report a finding. Default 0.7. |
--fail-on <level> |
Lowest severity that fails the build: error (default), warning, info, or none. |
--strict |
Also fail on unverifiable claims. |
--format <fmt> |
pretty (default), json, or github. |
Docverity fails CI the way a linter would. Exit codes: 0 clean (or warnings
only), 1 a finding at or above --fail-on severity, 2 a configuration error
(e.g. an invalid --fail-confidence/--fail-on or a missing doc file) so a
typo can never mask real drift with a green build.
In CI (GitHub Actions)
name: docs
on: [pull_request]
jobs:
docverity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npx docverity --format github
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
With --format github, drifted claims appear as inline annotations on the
changed lines of the pull request.
Use it from an agent (MCP)
Docverity ships an MCP server so a coding agent can check docs as a tool and fix drift in the same turn it changed the code. Add it to your MCP client:
{
"mcpServers": {
"docverity": {
"command": "npx",
"args": ["docverity", "mcp"]
}
}
}
This exposes one tool, check_docs, which returns each drifted claim with its
file, line, the stale text, code evidence, a confidence score, and a suggested
fix the agent can apply directly. It runs the deterministic engine by default
(fast, free, no key); pass llm: true to also verify prose claims.
A SKILL.md is included so the agent knows when to reach for it
(after editing code, before a release, when asked whether the docs are correct).
How it works
- Extract — parse each doc into atomic claims (a flag, a path, an env var, a symbol, or a prose assertion).
- Locate — search the source tree (via ripgrep when available) for evidence of each claim. Documentation files are excluded from evidence: a claim must be backed by code, not by the docs restating it.
- Verify — the reference engine checks for hard evidence; the LLM engine judges prose claims against the located evidence and returns ok / drifted / unverifiable with a specific reason.
- Report — pretty output, machine-readable JSON, or GitHub annotations.
License
MIT
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.