MCP Catalogs
首页

mcp-server-chart vs qdrant-mcp-server

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-server-chart
by antvis
qdrant-mcp-server
by mhalder
Stars★ 4,068★ 32
30天用量10,239
综合分8446
官方
分类
AI / LLM 工具开发者工具效率工具
搜索AI / LLM 工具开发者工具
实现语言TypeScriptTypeScript
最近提交本月本月

mcp-server-chart · 概述

使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。

qdrant-mcp-server · 概述

使用 Qdrant 向量数据库和多嵌入提供商实现的语义搜索 MCP 服务器。

mcp-server-chart · 使用场景

  • 数据分析师从数据集中创建可视化报告
  • AI 助手根据用户请求生成自定义图表
  • Web 应用通过 HTTP API 嵌入可视化功能

qdrant-mcp-server · 使用场景

  • 在大型代码库中进行语义代码搜索,支持 AST 感知的分块
  • 搜索 Git 历史记录以查找过去的更改、修复和模式
  • 使用本地向量存储构建知识库和 RAG 应用程序
  • 使用倒排秩融合进行跨代码库联邦搜索

mcp-server-chart · 安装

安装

全局安装:

npm install -g @antv/mcp-server-chart

对于桌面应用(如 Claude Desktop、VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

Windows 系统:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

qdrant-mcp-server · 安装

安装

先决条件

  • Node.js 22.x 或 24.x
  • 支持 Compose 的 Podman 或 Docker

步骤

# 克隆并安装
git clone https://github.com/mhalder/qdrant-mcp-server.git
cd qdrant-mcp-server
npm install

# 启动服务
podman compose up -d   # 使用 Podman
docker compose up -d   # 使用 Docker

# 拉取嵌入模型
podman exec ollama ollama pull nomic-embed-text

# 构建
npm run build

Claude Desktop 配置

添加到 ~/.claude.json

{
  "mcpServers": {
    "qdrant": {
      "type": "stdio",
      "command": "node",
      "args": ["/path/to/qdrant-mcp-server/build/index.js"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。