Multi-Source Documentation MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Multi-Source Documentation MCP Serversearch for Voiceflow API block examples"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Multi-Source Documentation MCP Server
A Model Context Protocol (MCP) server that enables AI assistants like Claude to search and query documentation from multiple sources. Currently supports Voiceflow and Claude Code documentation.
๐ Quick Start
Prerequisites
Python 3.10 or higher
uv package manager
Installation
# Clone the repository
git clone <your-repo-url>
cd voiceflow-docs-mcp
# Install dependencies
uv syncRunning the Server
# Run directly
uv run voiceflow-docs-mcp
# Or as a Python module
python -m voiceflow_docs_mcp.serverRelated MCP server: DevDocs MCP Server
๐ง Configuration
Claude Desktop Integration
Add this configuration to your Claude Desktop config file:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"voiceflow-docs": {
"command": "uv",
"args": ["run", "voiceflow-docs-mcp"],
"cwd": "/absolute/path/to/voiceflow-docs-mcp"
}
}
}After adding the configuration, restart Claude Desktop.
๐ Available Tools
The server provides 6 specialized tools for documentation access:
Tool | Description |
| Full-text search across all documentation sources with relevance ranking |
| Retrieve a specific document by its exact path or identifier |
| Search for code snippets and examples across documentation |
| List available documentation categories and topics |
| Get integration-specific documentation and guides |
| Find step-by-step tutorials and walkthroughs |
๐ Project Structure
voiceflow-docs-mcp/
โโโ voiceflow_docs_mcp/ # Main MCP server package
โ โโโ __init__.py # Package initialization
โ โโโ server.py # MCP server implementation (6 tools)
โ โโโ db_manager.py # SQLite database operations
โ โโโ config.py # Configuration and environment handling
โ โโโ parser.py # Markdown documentation parser
โ
โโโ data/ # Documentation content (1.3 MB)
โ โโโ voiceflow_docs/ # 182 Voiceflow documentation files
โ โโโ claude_code_docs/ # 12 Claude Code documentation files
โ
โโโ .claude/ # Claude Code configuration
โ โโโ QUICK_START.md # Quick start guide
โ โโโ README.md # Claude-specific readme
โ โโโ settings.local.json # Local settings (gitignored)
โ
โโโ .gitignore # Git ignore rules
โโโ .python-version # Python version specification (3.10+)
โโโ pyproject.toml # Project metadata and dependencies
โโโ uv.lock # Locked dependency versions
โโโ LICENSE # MIT License
โโโ README.md # This file๐ ๏ธ Technical Details
Documentation Database
Storage: SQLite database with full-text search (FTS5)
Sources: Multi-source support (Voiceflow, Claude Code, extensible)
Indexing: Automatic on first run, incremental updates supported
Search: Full-text search with BM25 relevance ranking
Dependencies
Package | Purpose |
| MCP server framework |
| HTML parsing and cleaning |
| Async HTTP client for fetching docs |
| HTML to Markdown conversion |
| Web scraping for documentation |
| Parse YAML frontmatter in Markdown |
| YAML processing |
Data Sources
Voiceflow Documentation (182 files)
Complete Voiceflow platform documentation
API references, guides, tutorials
Integration documentation
Claude Code Documentation (12 files)
Claude Code feature documentation
Setup and configuration guides
Best practices and troubleshooting
๐ Usage Examples
Searching Documentation
# When connected to Claude Desktop, you can ask:
"Search the Voiceflow docs for information about API blocks"
"Find code examples for integrating with external APIs"
"What are the available Voiceflow integrations?"
"Show me step-by-step guides for setting up a voice assistant"Querying Specific Documents
# Ask Claude to retrieve specific documentation:
"Get the document about Voiceflow agent variables"
"Show me the integration docs for Zapier"
"Find the documentation on condition blocks"๐งช Development
Project Status
โ Multi-source documentation support
โ Full-text search with relevance ranking
โ 6 specialized MCP tools
โ SQLite database with FTS5
โ Automatic documentation indexing
โ Claude Desktop integration
Adding New Documentation Sources
The server is designed to support multiple documentation sources. To add a new source:
Add documentation files to
data/your-source-name/Update configuration in
voiceflow_docs_mcp/config.pyThe server will automatically index new files on restart
๐ค Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Development Setup
# Clone and install
git clone <your-repo-url>
cd voiceflow-docs-mcp
uv sync
# Run in development mode
uv run python -m voiceflow_docs_mcp.server๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Acknowledgments
Built with FastMCP - A Python framework for MCP servers
Documentation sourced from Voiceflow and Claude Code
Designed for use with Claude Desktop
๐ Support
For issues, questions, or contributions, please open an issue on GitHub.
Note: This is an unofficial community project and is not affiliated with Anthropic or Voiceflow.
This server cannot be deployed
Maintenance
Related MCP Connectors
Versioned documentation registry and semantic search for AI tools and coding assistants.
Search your knowledge bases from any AI assistant using hybrid RAG.
Connect your team's living knowledge base โ docs, data, issues, CRM โ to Claude and ChatGPT.
The documentation, as a tool your agent can call: 950+ AI-dev guides. Search + fetch tools.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to enhance their responses with relevant documentation through a semantic vector search, offering tools for managing and processing documentation efficiently.6 npm64MIT
- FlicenseAqualityDmaintenanceProvides access to 600+ documentation libraries from DevDocs.io including Python, JavaScript, React, Django, and more. Enables searching, browsing, and retrieving documentation content directly through Claude Desktop.55-
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to perform semantic, hybrid, and filtered search on indexed local documentation with RAG capabilities.2MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to crawl, index, and retrieve information from technical documentation using semantic search, with optional knowledge graph validation for code hallucination detection.MIT