Skip to content

Commit 5b095d7

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for QDRANT_API_KEY)
1 parent da8c380 commit 5b095d7

1 file changed

Lines changed: 18 additions & 11 deletions

File tree

servers/io.qdrant-mcp.json

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,23 @@
66
"description": "Store and retrieve information from Qdrant vector database using semantic search. Supports local and cloud Qdrant instances.",
77
"icon": "https://avatars.githubusercontent.com/u/73504361?v=4",
88
"schema_version": "2.1",
9-
"categories": ["database", "ai-ml"],
10-
"tags": ["qdrant", "vector-database", "semantic-search", "embeddings", "rag"],
11-
9+
"categories": [
10+
"database",
11+
"ai-ml"
12+
],
13+
"tags": [
14+
"qdrant",
15+
"vector-database",
16+
"semantic-search",
17+
"embeddings",
18+
"rag"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "uvx",
15-
"args": ["mcp-server-qdrant"],
23+
"args": [
24+
"mcp-server-qdrant"
25+
],
1626
"env": {
1727
"QDRANT_URL": "${input:QDRANT_URL}",
1828
"COLLECTION_NAME": "${input:COLLECTION_NAME}",
@@ -42,7 +52,7 @@
4252
"id": "QDRANT_API_KEY",
4353
"label": "Qdrant API Key",
4454
"description": "API key for Qdrant Cloud. Not required for local instances.",
45-
"type": "password",
55+
"type": "text",
4656
"required": false,
4757
"secret": true,
4858
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -55,26 +65,23 @@
5565
]
5666
}
5767
},
58-
5968
"auth": {
6069
"type": "optional_api_key",
6170
"instructions": "API key required for Qdrant Cloud instances. Not needed for local Qdrant."
6271
},
63-
6472
"contributor": {
6573
"name": "Qdrant",
6674
"github": "qdrant",
6775
"url": "https://qdrant.tech"
6876
},
69-
7077
"links": {
7178
"repository": "https://github.com/qdrant/mcp-server-qdrant",
7279
"homepage": "https://qdrant.tech",
7380
"documentation": "https://qdrant.tech/documentation/"
7481
},
75-
76-
"platforms": ["all"],
77-
82+
"platforms": [
83+
"all"
84+
],
7885
"capabilities": {
7986
"tools": true,
8087
"resources": false,

0 commit comments

Comments
 (0)