A high-performance Model Context Protocol (MCP) server written in Go that acts as a real-time Retrieval-Augmented Generation (RAG) agent for your codebases.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"qdrant-mcp-server": {
"command": "go",
"args": [
"run",
"github.com/weverkley/qdrant-mcp-server@latest"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add qdrant-mcp-server go run github.com/weverkley/qdrant-mcp-server@latest
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"qdrant-mcp-server": {
"command": "go",
"args": [
"run",
"github.com/weverkley/qdrant-mcp-server@latest"
]
}
}
}
📋 Copy