mcp-server-chart vs qdrant-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | qdrant-mcp-server by mhalder | |
|---|---|---|
| Stars | ★ 4,068 | ★ 32 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SearchAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
qdrant-mcp-server · Summary
MCP server for semantic search using Qdrant vector database with multiple embedding providers.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}qdrant-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"]
}
}
}