MCP Catalogs
Home

mcp-server-chart vs mcp-graphql

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

mcp-server-chart
by antvis
mcp-graphql
by blurrah
Stars★ 4,068★ 385
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsWeb Scraping
LanguageTypeScriptTypeScript
Last committhis month8 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-graphql · Summary

MCP server enabling LLMs to interact with GraphQL APIs through schema introspection and query execution.

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-graphql · Use cases

  • Enabling AI assistants to query GraphQL APIs without custom implementation
  • Allowing language models to discover and interact with unknown GraphQL services
  • Providing secure read-only access to GraphQL endpoints for AI applications

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-graphql · Install

Installing via Smithery

npx -y @smithery/cli install mcp-graphql --client claude

Installing Manually (Claude Desktop)

Add the following to your Claude Desktop configuration:

{
    "mcpServers": {
        "mcp-graphql": {
            "command": "npx",
            "args": ["mcp-graphql"],
            "env": {
                "ENDPOINT": "http://localhost:3000/graphql"
            }
        }
    }
}

Environment Variables

  • ENDPOINT: GraphQL endpoint URL (default: http://localhost:4000/graphql)
  • HEADERS: JSON string containing headers for requests
  • ALLOW_MUTATIONS: Enable mutation operations (disabled by default)
  • NAME: Name of the MCP server
  • SCHEMA: Path to a local GraphQL schema file or URL (optional)
Comparison generated from public README + GitHub signals. Last updated automatically.