Qdrant Docs MCP Server
OfficialClick 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., "@Qdrant Docs MCP ServerHow do I create a collection in Qdrant?"
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.
MCP for Qdrant Documentation
The idea is to create a PoC for curated documentation MCP server based on mcp-server-qdrant.
Motivation
Default mcp-server-qdrant is too general and expects you to put data into it.
But one of the main use-cases for MCP is to provide LLMs with latest and most accurate documentation.
This project should serve as an example of how you can build ready-to-use MCP server for a specific package documentation.
This MCP server is read-only, model is only allowed retrieve data about the documentation.
Related MCP server: MCP-Ragdocs
Setup
This is a Python project using uv for package management.
Install
uvif you haven't already:curl -LsSf https://astral.sh/uv/install.sh | shCreate a virtual environment and install dependencies:
uv venv source .venv/bin/activate # On Unix/macOS # or .venv\Scripts\activate # On Windows uv pip install -r requirements.txtInstall the package in development mode:
uv pip install -e .
Development
Use
rufffor linting and formattingThe project uses
hatchlingas the build backend
MCP Server Inspector
uv run mcp dev qdrant_docs_mcp/server.pyRun for serving
uv run qdrant_docs_mcp/main.py --transport=sseThis server cannot be deployed
Maintenance
Related MCP Connectors
Read-only MCP server for the OrchestKit docs: full-text search + Markdown fetch. No auth.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
MCP server for langchain documentation, generated by doc2mcp.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context6 npm265MIT
- AlicenseNot gradedqualityFmaintenanceA Model Context Protocol (MCP) server that enables semantic search and retrieval of documentation using a vector database (Qdrant). This server allows you to add documentation from URLs or local files and then search through them using natural language queries.33 npm136Apache 2.0
- AlicenseNot gradedqualityDmaintenanceMCP server for document ingestion and semantic search on Qdrant. Enables ingesting local documents, generating embeddings with OpenAI, and performing vector search with metadata filters.Apache 2.0
- AlicenseNot gradedqualityCmaintenanceGeneric MCP server that exposes Markdown documentation to LLMs, enabling them to search and answer questions about any software documentation.MIT