MCP Catalogs
首页

mcp-server-chart vs any-chat-completions-mcp

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

mcp-server-chart
by antvis
any-chat-completions-mcp
by pyroprompts
Stars★ 4,068★ 151
30天用量10,239
综合分8442
官方
分类
AI / LLM 工具开发者工具效率工具
AI / LLM 工具开发者工具效率工具
实现语言TypeScriptJavaScript
最近提交本月13 个月前

mcp-server-chart · 概述

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

any-chat-completions-mcp · 概述

MCP服务器,可将任何兼容OpenAI API的LLM集成到Claude中作为工具使用,实现多模型对话。

mcp-server-chart · 使用场景

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

any-chat-completions-mcp · 使用场景

  • 将多个 LLM 提供商集成到 Claude Desktop 中
  • 在不同 AI 模型间切换以完成专业任务
  • 通过 Claude 界面访问专有 LLM 模型

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"]
    }
  }
}

any-chat-completions-mcp · 安装

安装

要将此 MCP 服务器添加到 Claude Desktop,请将以下配置添加到 Claude Desktop 配置文件中:

**MacOS:** ~/Library/Application Support/Claude/claude_desktop_config.json

**Windows:** %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "chat-provider-name": {
      "command": "npx",
      "args": [
        "@pyroprompts/any-chat-completions-mcp"
      ],
      "env": {
        "AI_CHAT_KEY": "YOUR_API_KEY",
        "AI_CHAT_NAME": "ProviderName",
        "AI_CHAT_MODEL": "model-name",
        "AI_CHAT_BASE_URL": "https://api.example.com/v1"
      }
    }
  }
}

您可以通过多次引用同一个 MCP 服务器但使用不同的环境变量来添加多个提供商。

对比内容由 README + GitHub 公开数据自动生成,定期更新。