Skip to content

Commit 662d1bb

Browse files
authored
feat: add Qdrant MCP server definition (#64)
* Add Qdrant MCP server definition Official Qdrant MCP server for vector database operations. Store and retrieve data with semantic search. Uses mcp-server-qdrant Python package via uvx. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for QDRANT_API_KEY) * fix: rename server files with transport suffix - io.qdrant-mcp.json -> io.qdrant-mcp-uvx.json (id: io.qdrant-mcp-uvx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent ae1e744 commit 662d1bb

1 file changed

Lines changed: 91 additions & 0 deletions

File tree

servers/io.qdrant-mcp-uvx.json

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "io.qdrant-mcp-uvx",
4+
"name": "Qdrant (uvx)",
5+
"alias": "qdrant",
6+
"description": "Store and retrieve information from Qdrant vector database using semantic search. Supports local and cloud Qdrant instances.",
7+
"icon": "https://avatars.githubusercontent.com/u/73504361?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"database",
11+
"ai-ml"
12+
],
13+
"tags": [
14+
"qdrant",
15+
"vector-database",
16+
"semantic-search",
17+
"embeddings",
18+
"rag"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "uvx",
23+
"args": [
24+
"mcp-server-qdrant"
25+
],
26+
"env": {
27+
"QDRANT_URL": "${input:QDRANT_URL}",
28+
"COLLECTION_NAME": "${input:COLLECTION_NAME}",
29+
"QDRANT_API_KEY": "${input:QDRANT_API_KEY}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "QDRANT_URL",
35+
"label": "Qdrant URL",
36+
"description": "URL of your Qdrant instance. Use http://localhost:6333 for local or your Qdrant Cloud URL.",
37+
"type": "url",
38+
"required": true,
39+
"secret": false,
40+
"placeholder": "http://localhost:6333"
41+
},
42+
{
43+
"id": "COLLECTION_NAME",
44+
"label": "Collection Name",
45+
"description": "Name of the Qdrant collection to use for storing and retrieving data.",
46+
"type": "text",
47+
"required": true,
48+
"secret": false,
49+
"placeholder": "my-collection"
50+
},
51+
{
52+
"id": "QDRANT_API_KEY",
53+
"label": "Qdrant API Key",
54+
"description": "API key for Qdrant Cloud. Not required for local instances.",
55+
"type": "text",
56+
"required": false,
57+
"secret": true,
58+
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
59+
"obtain": {
60+
"url": "https://cloud.qdrant.io/",
61+
"instructions": "1. Go to cloud.qdrant.io and create an account\n2. Create or select a cluster\n3. Navigate to API Keys section\n4. Click 'Create' and copy the key",
62+
"button_label": "Get API Key"
63+
}
64+
}
65+
]
66+
}
67+
},
68+
"auth": {
69+
"type": "optional_api_key",
70+
"instructions": "API key required for Qdrant Cloud instances. Not needed for local Qdrant."
71+
},
72+
"contributor": {
73+
"name": "Qdrant",
74+
"github": "qdrant",
75+
"url": "https://qdrant.tech"
76+
},
77+
"links": {
78+
"repository": "https://github.com/qdrant/mcp-server-qdrant",
79+
"homepage": "https://qdrant.tech",
80+
"documentation": "https://qdrant.tech/documentation/"
81+
},
82+
"platforms": [
83+
"all"
84+
],
85+
"capabilities": {
86+
"tools": true,
87+
"resources": false,
88+
"prompts": false,
89+
"read_only_mode": false
90+
}
91+
}

0 commit comments

Comments
 (0)