Qdrant MCP for VS Code
io.github.avaazquezz/mcp-qdrant
MCP server that wraps the Qdrant vector database API as tools.
client:VS Code
transport:stdio
runtime:pypi
Install Qdrant MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "qdrant-url",
"description": "QDRANT_URL",
"password": true
},
{
"type": "promptString",
"id": "qdrant-api-key",
"description": "QDRANT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "qdrant-local-path",
"description": "QDRANT_LOCAL_PATH",
"password": true
},
{
"type": "promptString",
"id": "qdrant-mcp-toolsets",
"description": "QDRANT_MCP_TOOLSETS",
"password": true
},
{
"type": "promptString",
"id": "qdrant-mcp-read-only",
"description": "QDRANT_MCP_READ_ONLY",
"password": true
}
],
"servers": {
"mcp-qdrant": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-qdrant"
],
"env": {
"QDRANT_URL": "${input:qdrant-url}",
"QDRANT_API_KEY": "${input:qdrant-api-key}",
"QDRANT_LOCAL_PATH": "${input:qdrant-local-path}",
"QDRANT_MCP_TOOLSETS": "${input:qdrant-mcp-toolsets}",
"QDRANT_MCP_READ_ONLY": "${input:qdrant-mcp-read-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs