RVTDocs MCP
Enables deterministic querying of RVTDocs documentation with tools for fetching, scanning, and debugging documentation content.
README
RVTDocs MCP
Python MCP server for deterministic RVTDocs querying with low-retry behavior.
Overview
- Python 3.14 project managed with
uv - MCP server entrypoint:
rvtdocs-mcp - Runtime source lives under
src/ - Internal docs live under
docs/
Tools
| Tool | Purpose |
|---|---|
rvtdocs_fetch |
Primary lookup — query, year, mode (trust/full/diagnostics) |
rvtdocs_scan |
Lightweight existence check — no snippet |
rvtdocs_debug |
Full diagnostics — routing trace + extraction details |
rvtdocs_batch |
Concurrent multi-query (up to 10) |
rvtdocs_stats |
Local telemetry summary (last N hours) |
rvtdocs_version_info |
Supported years, default year, cache stats |
rvtdocs_session_set |
Store key-value in session (max 100 entries, LRU eviction) |
rvtdocs_session_get |
Retrieve session value |
Design Goals
- Single-fetch discipline: one HTTP request per query (retries only on network failure)
- Structured extraction: selectolax HTML parsing reduces output ~33% vs raw text
- Mode-based output shaping: trust mode returns metadata only (~300 chars), full mode returns snippet (~2500 chars)
- Batch amortization: up to 10 queries per MCP call
Note: Token savings are character-based estimates. Actual LLM token counts depend on model tokenizer.
Run local
uv run --python 3.14 rvtdocs-mcp
Module form while editing source:
uv run --python 3.14 python -m src.server
Run via GitHub
uvx --from "git+https://github.com/trgiangv/rvtdocs-mcp.git" --python 3.14 rvtdocs-mcp
MCP config
From local checkout:
{
"mcpServers": {
"rvtdocs": {
"type": "stdio",
"command": "uv",
"args": ["run", "--python", "3.14", "rvtdocs-mcp"]
}
}
}
From GitHub:
{
"mcpServers": {
"rvtdocs": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/trgiangv/rvtdocs-mcp.git",
"--python",
"3.14",
"rvtdocs-mcp"
]
}
}
}
More docs
- Setup and MCP wiring:
docs/setup.md - Internal architecture:
docs/architecture.md - Tool reference:
docs/tools/ - Agent-oriented commands and repo notes:
AGENTS.md
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.