ultimate_mcp_server vs qdrant-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | qdrant-mcp-server by mhalder | |
|---|---|---|
| Stars | ★ 149 | ★ 32 |
| 30d uses | — | — |
| Score | 85 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | SearchAI / LLM ToolsDeveloper Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
qdrant-mcp-server · Summary
MCP server for semantic search using Qdrant vector database with multiple embedding providers.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
qdrant-mcp-server · Use cases
- Semantic code search in large codebases with AST-aware chunking
- Git history search to find past changes, fixes, and patterns
- Building knowledge bases and RAG applications with local vector storage
- Cross-repository federated search with Reciprocal Rank Fusion
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverqdrant-mcp-server · Install
Installation
Prerequisites
- Node.js 22.x or 24.x
- Podman or Docker with Compose support
Steps
# Clone and install
git clone https://github.com/mhalder/qdrant-mcp-server.git
cd qdrant-mcp-server
npm install
# Start services
podman compose up -d # Using Podman
docker compose up -d # Using Docker
# Pull the embedding model
podman exec ollama ollama pull nomic-embed-text
# Build
npm run buildClaude Desktop Configuration
Add to ~/.claude.json:
{
"mcpServers": {
"qdrant": {
"type": "stdio",
"command": "node",
"args": ["/path/to/qdrant-mcp-server/build/index.js"]
}
}
}