mcp-server-chart vs perplexity-web-api-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | perplexity-web-api-mcp by mishamyrt | |
|---|---|---|
| Stars | ★ 4,068 | ★ 72 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 46 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 搜索AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 1 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
perplexity-web-api-mcp · 概述
一个无需 API 密钥的 MCP 服务器,通过会话令牌提供 Perplexity AI 搜索和推理功能。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
perplexity-web-api-mcp · 使用场景
- 将网络搜索功能集成到 AI 应用程序中,无需 API 成本
- 使研究助理能够访问来自网络的最新信息
- 将 Perplexity 的推理功能添加到自定义 AI 工作流中
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"]
}
}
}perplexity-web-api-mcp · 安装
安装
**NPM 安装(推荐)**
npm install -g perplexity-web-api-mcp**Docker**
docker run -d -p 8080:8080 -e PERPLEXITY_SESSION_TOKEN="您的令牌" mishamyrt/perplexity-web-api-mcp**Claude Desktop 配置** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": ["-y", "perplexity-web-api-mcp"],
"env": {
"PERPLEXITY_SESSION_TOKEN": "您的会话令牌",
"PERPLEXITY_CSRF_TOKEN": "您的 CSRF 令牌"
}
}
}
}**无令牌模式**:省略上述环境变量以使用基本功能而不进行身份验证。