Qdrant MCP Server
A Model Context Protocol (MCP) server implementation for RAG
hadv
README
Qdrant MCP Server
A server implementation that supports both Qdrant and Chroma vector databases for storing and retrieving domain knowledge.
Features
- Support for both Qdrant and Chroma vector databases
- Configurable database selection via environment variables
- Uses Qdrant's built-in FastEmbed for efficient embedding generation
- Domain knowledge storage and retrieval
- Documentation file storage with metadata
- Support for PDF and TXT file formats
Prerequisites
- Node.js 20.x or later (LTS recommended)
- npm 10.x or later
- Qdrant or Chroma vector database
Installation
- Clone the repository:
git clone <repository-url>
cd qdrant-mcp-server
- Install dependencies:
npm install
- Create a
.env
file in the root directory based on the.env.example
template:
cp .env.example .env
- Update the
.env
file with your own settings:
DATABASE_TYPE=qdrant
QDRANT_URL=https://your-qdrant-instance.example.com:6333
QDRANT_API_KEY=your_api_key
COLLECTION_NAME=your_collection_name
- Build the project:
npm run build
AI IDE Integration
Cursor AI IDE
Create the script run-cursor-mcp.sh
in the project root:
#!/bin/zsh
cd /path/to/your/project
source ~/.zshrc
nvm use --lts
# Let the app load environment variables from .env file
node dist/index.js
Make the script executable:
chmod +x run-cursor-mcp.sh
Add this configuration to your ~/.cursor/mcp.json
or .cursor/mcp.json
file:
{
"mcpServers": {
"qdrant-retrieval": {
"command": "/path/to/your/project/run-cursor-mcp.sh",
"args": []
}
}
}
Claude Desktop
Add this configuration in Claude's settings:
{
"processes": {
"knowledge_server": {
"command": "/path/to/your/project/run-cursor-mcp.sh",
"args": []
}
},
"tools": [
{
"name": "store_knowledge",
"description": "Store domain-specific knowledge in a vector database",
"provider": "process",
"process": "knowledge_server"
},
{
"name": "retrieve_knowledge_context",
"description": "Retrieve relevant domain knowledge from a vector database",
"provider": "process",
"process": "knowledge_server"
}
]
}
Usage
Starting the Server
npm start
For development with auto-reload:
npm run dev
Storing Documentation
The server includes a script to store documentation files (PDF and TXT) with metadata:
npm run store-doc <path-to-your-file>
Example:
# Store a PDF file
npm run store-doc docs/manual.pdf
# Store a text file
npm run store-doc docs/readme.txt
The script will:
- Extract content from the file (text from PDF or plain text)
- Store the content with metadata including:
- Source: "documentation"
- File name and extension
- File size
- Last modified date
- Creation date
- Content type
API Endpoints
Store Domain Knowledge
POST /api/store
Content-Type: application/json
{
"content": "Your domain knowledge content here",
"source": "your-source",
"metadata": {
"key": "value"
}
}
Query Domain Knowledge
POST /api/query
Content-Type: application/json
{
"query": "Your search query here",
"limit": 5
}
Development
Running Tests
npm test
Building the Project
npm run build
Linting
npm run lint
Project Structure
src/
├── core/
│ ├── db-service.ts # Database service implementation
│ └── embedding-utils.ts # Embedding utilities
├── scripts/
│ └── store-documentation.ts # Documentation storage script
└── index.ts # Main server file
Using with Remote Qdrant
When using with a remote Qdrant instance (like Qdrant Cloud):
- Ensure your
.env
has the correct URL with port number:
QDRANT_URL=https://your-instance-id.region.gcp.cloud.qdrant.io:6333
- Set your API key:
QDRANT_API_KEY=your_qdrant_api_key
FastEmbed Integration
This project uses Qdrant's built-in FastEmbed for efficient embedding generation:
Benefits
- Lightweight and fast embedding generation
- Uses quantized model weights and ONNX Runtime for inference
- Better accuracy than OpenAI Ada-002 according to Qdrant
- No need for external embedding API keys
How It Works
- The system connects to your Qdrant instance
- When generating embeddings, it uses Qdrant's server-side embedding endpoint
- This eliminates the need for external embedding APIs and simplifies the architecture
Configuration
No additional configuration is needed as FastEmbed is built into Qdrant. Just ensure your Qdrant URL and API key are correctly set in your .env
file.
Troubleshooting
If you encounter issues:
- Make sure you're using Node.js LTS version (
nvm use --lts
) - Verify your environment variables are correct
- Check Qdrant/Chroma connectivity
- Ensure your Qdrant instance is properly configured
License
MIT
Recommended Servers
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
MCP PubMed Search
Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.
dbt Semantic Layer MCP Server
A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.
mixpanel
Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Nefino MCP Server
Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.
Vectorize
Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.
Mathematica Documentation MCP server
A server that provides access to Mathematica documentation through FastMCP, enabling users to retrieve function documentation and list package symbols from Wolfram Mathematica.
kb-mcp-server
An MCP server aimed to be portable, local, easy and convenient to support semantic/graph based retrieval of txtai "all in one" embeddings database. Any txtai embeddings db in tar.gz form can be loaded
Research MCP Server
The server functions as an MCP server to interact with Notion for retrieving and creating survey data, integrating with the Claude Desktop Client for conducting and reviewing surveys.