MCP Catalogs
Home

mcp-server-chart vs mcp-playground

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
mcp-playground
by Elkhn
Stars★ 4,068★ 45
30d uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month2 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

mcp-playground · Summary

A Streamlit-based chat playground with plug-and-play MCP server support for various LLM providers.

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

mcp-playground · Use cases

  • Creating a custom AI agent playground with specialized tools
  • Developing and testing MCP servers with a real client interface
  • Demonstrating multi-model LLM integration with external APIs

mcp-server-chart · Install

Installation

Install globally:

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

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

mcp-playground · Install

Installation

Prerequisites:

  • Docker ≥ 24
  • Docker Compose
  • At least one LLM provider API key

Quick Start:

git clone https://github.com/Elkhn/mcp-playground.git
cd mcp-playground
docker compose up --build

Access the application at http://localhost:8501

To integrate with Claude Desktop, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "weather": {
      "command": "docker",
      "args": ["run", "--rm", "-p", "8000:8000", "weather-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.