mcp-server-chart vs any-chat-completions-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | any-chat-completions-mcp by pyroprompts | |
|---|---|---|
| Stars | ★ 4,068 | ★ 151 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 13 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
any-chat-completions-mcp · Summary
MCP server that integrates any OpenAI-compatible API with Claude as a tool for multi-LLM interactions.
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
any-chat-completions-mcp · Use cases
- Integrate multiple LLM providers into Claude Desktop
- Switch between different AI models for specialized tasks
- Access proprietary LLMs through Claude's interface
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"]
}
}
}any-chat-completions-mcp · Install
Installation
To add this MCP server to Claude Desktop, add the following configuration to your Claude Desktop config file:
**On MacOS:** ~/Library/Application Support/Claude/claude_desktop_config.json
**On 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"
}
}
}
}You can add multiple providers by referencing the same MCP server multiple times with different environment variables.