From da8c3805323257daf0e8e3507c4921b73167bae0 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:58:43 +0000 Subject: [PATCH 1/3] 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 --- servers/io.qdrant-mcp.json | 84 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 servers/io.qdrant-mcp.json diff --git a/servers/io.qdrant-mcp.json b/servers/io.qdrant-mcp.json new file mode 100644 index 0000000..53889ec --- /dev/null +++ b/servers/io.qdrant-mcp.json @@ -0,0 +1,84 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "io.qdrant-mcp", + "name": "Qdrant", + "alias": "qdrant", + "description": "Store and retrieve information from Qdrant vector database using semantic search. Supports local and cloud Qdrant instances.", + "icon": "https://avatars.githubusercontent.com/u/73504361?v=4", + "schema_version": "2.1", + "categories": ["database", "ai-ml"], + "tags": ["qdrant", "vector-database", "semantic-search", "embeddings", "rag"], + + "transport": { + "type": "stdio", + "command": "uvx", + "args": ["mcp-server-qdrant"], + "env": { + "QDRANT_URL": "${input:QDRANT_URL}", + "COLLECTION_NAME": "${input:COLLECTION_NAME}", + "QDRANT_API_KEY": "${input:QDRANT_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "QDRANT_URL", + "label": "Qdrant URL", + "description": "URL of your Qdrant instance. Use http://localhost:6333 for local or your Qdrant Cloud URL.", + "type": "url", + "required": true, + "secret": false, + "placeholder": "http://localhost:6333" + }, + { + "id": "COLLECTION_NAME", + "label": "Collection Name", + "description": "Name of the Qdrant collection to use for storing and retrieving data.", + "type": "text", + "required": true, + "secret": false, + "placeholder": "my-collection" + }, + { + "id": "QDRANT_API_KEY", + "label": "Qdrant API Key", + "description": "API key for Qdrant Cloud. Not required for local instances.", + "type": "password", + "required": false, + "secret": true, + "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://cloud.qdrant.io/", + "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", + "button_label": "Get API Key" + } + } + ] + } + }, + + "auth": { + "type": "optional_api_key", + "instructions": "API key required for Qdrant Cloud instances. Not needed for local Qdrant." + }, + + "contributor": { + "name": "Qdrant", + "github": "qdrant", + "url": "https://qdrant.tech" + }, + + "links": { + "repository": "https://github.com/qdrant/mcp-server-qdrant", + "homepage": "https://qdrant.tech", + "documentation": "https://qdrant.tech/documentation/" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 5b095d7d54eaa79ff02ce4314a7502644d7e7c15 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:10:25 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for QDRANT_API_KEY) --- servers/io.qdrant-mcp.json | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/servers/io.qdrant-mcp.json b/servers/io.qdrant-mcp.json index 53889ec..87b292a 100644 --- a/servers/io.qdrant-mcp.json +++ b/servers/io.qdrant-mcp.json @@ -6,13 +6,23 @@ "description": "Store and retrieve information from Qdrant vector database using semantic search. Supports local and cloud Qdrant instances.", "icon": "https://avatars.githubusercontent.com/u/73504361?v=4", "schema_version": "2.1", - "categories": ["database", "ai-ml"], - "tags": ["qdrant", "vector-database", "semantic-search", "embeddings", "rag"], - + "categories": [ + "database", + "ai-ml" + ], + "tags": [ + "qdrant", + "vector-database", + "semantic-search", + "embeddings", + "rag" + ], "transport": { "type": "stdio", "command": "uvx", - "args": ["mcp-server-qdrant"], + "args": [ + "mcp-server-qdrant" + ], "env": { "QDRANT_URL": "${input:QDRANT_URL}", "COLLECTION_NAME": "${input:COLLECTION_NAME}", @@ -42,7 +52,7 @@ "id": "QDRANT_API_KEY", "label": "Qdrant API Key", "description": "API key for Qdrant Cloud. Not required for local instances.", - "type": "password", + "type": "text", "required": false, "secret": true, "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -55,26 +65,23 @@ ] } }, - "auth": { "type": "optional_api_key", "instructions": "API key required for Qdrant Cloud instances. Not needed for local Qdrant." }, - "contributor": { "name": "Qdrant", "github": "qdrant", "url": "https://qdrant.tech" }, - "links": { "repository": "https://github.com/qdrant/mcp-server-qdrant", "homepage": "https://qdrant.tech", "documentation": "https://qdrant.tech/documentation/" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 846454bdf0b9d630cd0789bc438483330d6638de Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:31 +0800 Subject: [PATCH 3/3] 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 --- servers/{io.qdrant-mcp.json => io.qdrant-mcp-uvx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{io.qdrant-mcp.json => io.qdrant-mcp-uvx.json} (97%) diff --git a/servers/io.qdrant-mcp.json b/servers/io.qdrant-mcp-uvx.json similarity index 97% rename from servers/io.qdrant-mcp.json rename to servers/io.qdrant-mcp-uvx.json index 87b292a..e0317ea 100644 --- a/servers/io.qdrant-mcp.json +++ b/servers/io.qdrant-mcp-uvx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "io.qdrant-mcp", - "name": "Qdrant", + "id": "io.qdrant-mcp-uvx", + "name": "Qdrant (uvx)", "alias": "qdrant", "description": "Store and retrieve information from Qdrant vector database using semantic search. Supports local and cloud Qdrant instances.", "icon": "https://avatars.githubusercontent.com/u/73504361?v=4",