|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "io.qdrant-mcp", |
| 4 | + "name": "Qdrant", |
| 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": ["database", "ai-ml"], |
| 10 | + "tags": ["qdrant", "vector-database", "semantic-search", "embeddings", "rag"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "uvx", |
| 15 | + "args": ["mcp-server-qdrant"], |
| 16 | + "env": { |
| 17 | + "QDRANT_URL": "${input:QDRANT_URL}", |
| 18 | + "COLLECTION_NAME": "${input:COLLECTION_NAME}", |
| 19 | + "QDRANT_API_KEY": "${input:QDRANT_API_KEY}" |
| 20 | + }, |
| 21 | + "metadata": { |
| 22 | + "inputs": [ |
| 23 | + { |
| 24 | + "id": "QDRANT_URL", |
| 25 | + "label": "Qdrant URL", |
| 26 | + "description": "URL of your Qdrant instance. Use http://localhost:6333 for local or your Qdrant Cloud URL.", |
| 27 | + "type": "url", |
| 28 | + "required": true, |
| 29 | + "secret": false, |
| 30 | + "placeholder": "http://localhost:6333" |
| 31 | + }, |
| 32 | + { |
| 33 | + "id": "COLLECTION_NAME", |
| 34 | + "label": "Collection Name", |
| 35 | + "description": "Name of the Qdrant collection to use for storing and retrieving data.", |
| 36 | + "type": "text", |
| 37 | + "required": true, |
| 38 | + "secret": false, |
| 39 | + "placeholder": "my-collection" |
| 40 | + }, |
| 41 | + { |
| 42 | + "id": "QDRANT_API_KEY", |
| 43 | + "label": "Qdrant API Key", |
| 44 | + "description": "API key for Qdrant Cloud. Not required for local instances.", |
| 45 | + "type": "password", |
| 46 | + "required": false, |
| 47 | + "secret": true, |
| 48 | + "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", |
| 49 | + "obtain": { |
| 50 | + "url": "https://cloud.qdrant.io/", |
| 51 | + "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", |
| 52 | + "button_label": "Get API Key" |
| 53 | + } |
| 54 | + } |
| 55 | + ] |
| 56 | + } |
| 57 | + }, |
| 58 | + |
| 59 | + "auth": { |
| 60 | + "type": "optional_api_key", |
| 61 | + "instructions": "API key required for Qdrant Cloud instances. Not needed for local Qdrant." |
| 62 | + }, |
| 63 | + |
| 64 | + "contributor": { |
| 65 | + "name": "Qdrant", |
| 66 | + "github": "qdrant", |
| 67 | + "url": "https://qdrant.tech" |
| 68 | + }, |
| 69 | + |
| 70 | + "links": { |
| 71 | + "repository": "https://github.com/qdrant/mcp-server-qdrant", |
| 72 | + "homepage": "https://qdrant.tech", |
| 73 | + "documentation": "https://qdrant.tech/documentation/" |
| 74 | + }, |
| 75 | + |
| 76 | + "platforms": ["all"], |
| 77 | + |
| 78 | + "capabilities": { |
| 79 | + "tools": true, |
| 80 | + "resources": false, |
| 81 | + "prompts": false, |
| 82 | + "read_only_mode": false |
| 83 | + } |
| 84 | +} |
0 commit comments