MCP Catalogs
Home

mcp-server-chart vs token-enhancer

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

mcp-server-chart
by antvis
token-enhancer
by xelektron
Stars★ 4,068★ 64
30d uses10,239
Score8446
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Web ScrapingAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
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.

token-enhancer · Summary

MCP server that strips web pages to clean text, reducing token usage by 86-99%.

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

token-enhancer · Use cases

  • Reduce token usage when web pages are included in AI agent prompts
  • Clean up web content for analysis without ads and navigation elements
  • Batch fetch multiple URLs efficiently with cached results

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

token-enhancer · Install

pip install xelektron-token-enhancer

As an MCP Server (Claude Desktop): Add to your config file:

{
  "mcpServers": {
    "token-enhancer": {
      "command": "python3",
      "args": ["-m", "mcp_server"],
      "env": {
        "REQUESTS_CA_BUNDLE": "/etc/ssl/certs/ca-certificates.crt"
      }
    }
  }
}

Remove the env block on macOS/Windows.

Comparison generated from public README + GitHub signals. Last updated automatically.