DocSmith MCP Server
MCP server that provides semantic search, graph query, and keyword search tools for interacting with DocSmith's knowledge graph and documentation.
README
DocSmith MCP Server
MCP (Model Context Protocol) server that exposes DocSmith's semantic search and knowledge graph as tools for AI agents.
Tools
semantic_search
Search documents by semantic similarity with multiple retrieval strategies.
- Strategies:
vanilla(cosine similarity),hyde(hypothetical document embeddings),query_fusion(multi-query + RRF) - Features: metadata filters, context expansion (section/parent/neighbor), graph expansion (breadcrumbs + related entities), cross-encoder reranking
graph_query
Execute read-only Cypher queries against the Neo4j knowledge graph.
- Schema: 6 node types (Entity, Document, Section, Chunk, Cluster, Collection), 9 relationship types
- Patterns: entity relationships, cross-document connections, multi-hop traversal, document hierarchy
- Safety: write operations blocked,
$collection_idauto-injected
keyword_search
Exact text matching for error codes, identifiers, and literal strings.
Knowledge Graph Schema
(Document)-[:CONTAINS]->(Section)-[:CONTAINS]->(Chunk)
(Chunk)-[:MENTIONS]->(Entity)
(Entity)-[:EXTRACTED_FROM]->(Document)
(Entity)-[:RELATED_TO {predicate, confidence}]->(Entity)
(Document)-[:BELONGS_TO]->(Cluster)
Important: canonical_name is always lowercase — use toLower() when matching entities.
Setup
# Install dependencies
uv sync
# Configure environment
cp .env.example .env
# Edit .env with your DocSmith API URL, API key, and collection ID
# Run the server
uv run uvicorn server:app --host 0.0.0.0 --port 8005
Testing with MCP Inspector
npx @modelcontextprotocol/inspector
# Connect to: http://localhost:8005/mcp (Streamable HTTP transport)
See TESTS-MCP.txt for validated test cases.
Configuration
| Variable | Description |
|---|---|
DOCSMITH_URL |
DocSmith API base URL |
DOCSMITH_API_KEY |
Tenant API key |
COLLECTION_ID |
Collection UUID for this session |
Stack
- Python 3.12
- FastMCP (MCP SDK)
- Starlette (Streamable HTTP transport)
- httpx (async HTTP client)
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.