mcp-qdrant-embedding-search
Click on "Install 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., "@mcp-qdrant-embedding-searchfind documents similar to 'neural networks'"
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-qdrant-embedding-search
MCP server that searches documents in Qdrant using embeddings from LMStudio.
Takes a text query, converts it to a vector via LMStudio's OpenAI-compatible API, and performs semantic search in Qdrant.
Prerequisites
Node.js 18+
LMStudio running with an embedding model loaded (default:
text-embedding-qwen3-embedding-4b)Qdrant running with a collection containing your documents
Related MCP server: scholar-mcp
Usage
With npx
{
"mcpServers": {
"qdrant-docs": {
"command": "npx",
"args": ["-y", "mcp-qdrant-embedding-search"],
"env": {
"QDRANT_URL": "http://localhost:6333",
"QDRANT_COLLECTION": "my_docs",
"LMSTUDIO_URL": "http://localhost:1234"
}
}
}
}With node (local)
git clone https://github.com/plixplox/mcp-qdrant-embedding-search.git
cd mcp-qdrant-embedding-search
npm install
npm run build{
"mcpServers": {
"qdrant-docs": {
"command": "node",
"args": ["/path/to/mcp-qdrant-embedding-search/dist/index.js"],
"env": {
"QDRANT_COLLECTION": "my_docs"
}
}
}
}Tools
search_docs
Search documents by semantic similarity.
Parameter | Type | Required | Description |
| string | yes | Search query text |
| number | no | Max results (default: 5) |
| string | no | Qdrant collection (default: from config) |
list_collections
List all available Qdrant collections. No parameters.
Configuration
All settings are configured via environment variables:
Variable | Default | Description |
|
| LMStudio server URL |
|
| Embedding model name |
|
| Qdrant server URL |
| — | Qdrant API key (optional) |
|
| Default collection to search |
|
| Default number of results |
|
| Custom name for the search tool |
|
| Custom description for the search tool |
|
| Custom name for the list tool |
|
| Custom description for the list tool |
Custom tool descriptions
Tool names and descriptions are visible to the LLM and affect when it decides to call them. Customize them to match your use case:
{
"env": {
"TOOL_SEARCH_NAME": "search_api_reference",
"TOOL_SEARCH_DESCRIPTION": "Search the REST API reference. Use when you need endpoint specs, request/response schemas, or auth details."
}
}License
ISC
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA 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.Last updated40135Apache 2.0
- Flicense-qualityDmaintenanceMCP server for local semantic retrieval over a library of ebooks, using pplx-embed-context-v1 embeddings stored in Qdrant, enabling an LLM agent like Gemma 4 to search and retrieve relevant passages for answering questions.Last updated
- Alicense-qualityDmaintenanceMCP server for document ingestion and semantic search on Qdrant. Enables ingesting local documents, generating embeddings with OpenAI, and performing vector search with metadata filters.Last updatedApache 2.0
- AlicenseAqualityBmaintenanceLocal-first RAG indexing and semantic search MCP server. Enables document retrieval and context-aware queries using local embedding models.Last updated325MIT
Related MCP Connectors
Local-first RAG engine with MCP server for AI agent integration.
Agentic search over your Dewey document collections from any MCP-compatible client.
Remote ChromaDB vector database MCP server with streamable HTTP transport
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/plixplox/mcp-qdrant-embedding-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server