mcp-server-chart vs cortex-scout
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | cortex-scout by cortex-works | |
|---|---|---|
| Stars | ★ 4,068 | ★ 65 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 46 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 浏览器自动化网页抓取AI / LLM 工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 1 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
cortex-scout · 概述
为AI代理提供统一网页抓取和有状态自动化引擎,支持MCP集成。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
cortex-scout · 使用场景
- 需要反机器人处理的令牌高效网页检索的 AI 代理
- 替代 Playwright 等重型框架的自动化测试工作流
- 需要深度多跳搜索和提取的研究系统
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"]
}
}
}cortex-scout · 安装
安装
选项 A — 预构建二进制文件
从 GitHub Releases 下载最新版本:
cortex-scout-mcp— MCP stdio 服务器(推荐用于 VS Code/Cursor/Claude Desktop)cortex-scout— 可选的 HTTP 服务器
选项 B — 从源码构建
先安装 protoc,然后:
git clone https://github.com/cortex-works/cortex-scout.git
cd cortex-scout
cargo build --release --manifest-path mcp-server/Cargo.toml --bin cortex-scout-mcpClaude Desktop 集成
添加到 Claude Desktop 配置:
{
"mcpServers": {
"cortex-scout": {
"command": "env",
"args": [
"RUST_LOG=warn",
"CORTEX_SCOUT_TOOL_TIMEOUT_SECS=90",
"/path/to/cortex-scout-mcp"
]
}
}
}