docs2db-mcp-server
MCP server for semantic and hybrid search over RHEL documentation using docs2db RAG, with cross-encoder reranking and support for multiple MCP clients.
README
docs2db-mcp-server
MCP server for docs2db-api RAG queries. Provides semantic and hybrid search tools for RHEL documentation. Compatible with llama-stack, Goose, Claude Desktop, and other MCP clients.
Features
- Hybrid Search: Combines vector similarity and BM25 keyword search with Reciprocal Rank Fusion
- Cross-Encoder Reranking: Improves result quality using ms-marco-MiniLM-L-6-v2
- MCP Protocol: Standard Model Context Protocol via FastMCP
- SSE Transport: Server-Sent Events for real-time streaming
- Configurable: Environment variables for all settings
- Production Ready: Containerized, non-root user, health checks
Installation
Prerequisites
Install uv:
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Or with brew
brew install uv
From PyPI
uv add docs2db-mcp-server
From Source
git clone https://github.com/rhel-lightspeed/docs2db-mcp-server.git
cd docs2db-mcp-server
uv sync
uv pip install -e .
Quick Start
Prerequisites
- PostgreSQL with pgvector containing docs2db RAG database
- docs2db to build the RAG database (see docs2db)
Running the Server
# Start the MCP server (uses localhost defaults)
uv run python -m docs2db_mcp
Default configuration connects to postgresql://postgres:postgres@localhost:5432/ragdb
Server will start on http://localhost:8002/sse
Using with llama-stack
Add to your run.yaml:
tool_runtime:
- provider_id: model-context-protocol
provider_type: remote::model-context-protocol
registered_resources:
tool_groups:
- toolgroup_id: mcp::docs2db-rag
provider_id: model-context-protocol
mcp_endpoint:
uri: http://localhost:8002/sse
Using with Goose
Add to ~/.config/goose/config.yaml:
extensions:
docs2db-rag:
enabled: true
type: stdio
name: docs2db-rag
cmd: uv
args:
- run
- python
- -m
- docs2db_mcp
envs:
DOCS2DB_MCP_TRANSPORT: stdio
Using with Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"docs2db-rag": {
"command": "uv",
"args": ["run", "python", "-m", "docs2db_mcp"]
}
}
}
Configuration
All configuration via environment variables with DOCS2DB_MCP_ prefix.
Note: For stdio transport, DOCS2DB_LOG_LEVEL is automatically set to CRITICAL to minimize startup logs. Set manually if needed.
MCP Server Settings
| Variable | Default | Description |
|---|---|---|
DOCS2DB_MCP_TRANSPORT |
sse |
Transport type (sse/stdio) |
DOCS2DB_MCP_HOST |
0.0.0.0 |
Bind address |
DOCS2DB_MCP_PORT |
8002 |
Port number |
DOCS2DB_MCP_LOG_LEVEL |
INFO |
Logging level |
DOCS2DB_MCP_SHOW_BANNER |
true |
Show FastMCP banner (auto-suppressed for stdio) |
Database Settings
| Variable | Default | Description |
|---|---|---|
DOCS2DB_MCP_DB_HOST |
localhost |
PostgreSQL host |
DOCS2DB_MCP_DB_PORT |
5432 |
PostgreSQL port |
DOCS2DB_MCP_DB_DATABASE |
ragdb |
Database name |
DOCS2DB_MCP_DB_USER |
postgres |
Database user |
DOCS2DB_MCP_DB_PASSWORD |
postgres |
Database password |
RAG Settings
| Variable | Default | Description |
|---|---|---|
DOCS2DB_MCP_RAG_SIMILARITY_THRESHOLD |
0.7 |
Minimum similarity score |
DOCS2DB_MCP_RAG_MAX_CHUNKS |
5 |
Maximum chunks to return |
DOCS2DB_MCP_RAG_ENABLE_RERANKING |
true |
Enable cross-encoder reranking |
Tools
search_documents
Search RHEL documentation using hybrid search (vector + BM25).
Parameters:
query(string, required): Search querymax_chunks(integer, optional): Maximum chunks to return (default: 5)similarity_threshold(float, optional): Minimum similarity score (default: 0.7)enable_reranking(boolean, optional): Enable cross-encoder reranking (default: true)
Returns:
{
"chunks": [
{
"text": "Chunk content...",
"contextual_text": "LLM-generated context...",
"similarity": 0.85,
"source": "path/to/source/file.html",
"metadata": {...}
}
],
"query_used": "original query"
}
Docker/Podman
Build Image
podman build -t docs2db-mcp-server .
Run Container
podman run -d \
--name docs2db-mcp \
-p 8002:8002 \
-e DOCS2DB_MCP_DB_HOST=postgres \
-e DOCS2DB_MCP_DB_PASSWORD=mysecret \
docs2db-mcp-server
Docker Compose / Podman Compose
services:
postgres:
image: pgvector/pgvector:pg17
environment:
POSTGRES_PASSWORD: postgres
volumes:
- ragdb:/var/lib/postgresql/data
- ./ragdb_dump.sql:/docker-entrypoint-initdb.d/init.sql
docs2db-mcp:
image: docs2db-mcp-server
ports:
- "8002:8002"
environment:
DOCS2DB_MCP_DB_HOST: postgres
DOCS2DB_MCP_DB_PASSWORD: postgres
depends_on:
- postgres
Development
# Clone repo
git clone https://github.com/rhel-lightspeed/docs2db-mcp-server.git
cd docs2db-mcp-server
# Install dependencies
uv sync
uv pip install -e ".[dev]"
# Run tests
uv run pytest
# Run linters
uv run ruff check .
uv run mypy src/
Architecture
┌─────────────────────────────────────┐
│ MCP Client │
│ (llama-stack, Goose, Claude, etc.) │
└──────────────┬──────────────────────┘
│ MCP Protocol (SSE/stdio)
↓
┌─────────────────────────────────────┐
│ docs2db-mcp-server │
│ │
│ FastMCP Server │
│ └─ search_documents (tool) │
│ ↓ │
│ UniversalRAGEngine │
│ (from docs2db-api) │
└──────────────┬──────────────────────┘
│
↓
┌─────────────────────────────────────┐
│ PostgreSQL + pgvector │
│ (docs2db RAG database) │
└─────────────────────────────────────┘
Related Projects
- docs2db - Build RAG databases from documents
- docs2db-api - Query API for docs2db databases
- linux-mcp-server - MCP server for Linux diagnostics
License
Apache License 2.0 - See LICENSE for details.
Contributing
Contributions welcome! Please open an issue or pull request.
Support
- Issues: https://github.com/rhel-lightspeed/docs2db-mcp-server/issues
- Discussions: https://github.com/rhel-lightspeed/docs2db-mcp-server/discussions
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。