MCP Catalogs
Home

mcp-server-chart vs mcp-server-playground

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

mcp-server-chart
by antvis
mcp-server-playground
by chrisleekr
Stars★ 4,068★ 7
30d uses10,239
Score8441
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis month1 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-server-playground · Summary

A TypeScript MCP server with HTTP transport, OAuth proxy support, and tools for AWS services, system operations, and data streaming.

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-server-playground · Use cases

  • Building secure MCP servers requiring OAuth authentication with third-party providers
  • Implementing stateful MCP sessions across distributed deployments using Valkey
  • Creating tools for AWS service investigation and monitoring with AI analysis

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-server-playground · Install

Installation

  1. Clone the repository:
git clone <your-repo>
cd mcp-server-playground
  1. Install Bun (if not already installed):
curl -fsSL https://bun.sh/install | bash
  1. Install dependencies:
bun install
  1. Set up environment variables:
cp .env.example .env
  1. Set up the MCP server for local development:
bun run dev:setup

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "mcp-server-playground": {
      "command": "bun",
      "args": ["run", "start"],
      "env": {
        "PORT": "3000"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.