MCP Catalogs
Home

mcp-server-chart vs mcp-server-bwt

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

mcp-server-chart
by antvis
mcp-server-bwt
by zizzfizzix
Stars★ 4,068★ 6
30d uses10,239
Score8434
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper Toolsseo
LanguageTypeScriptPython
Last committhis month13 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-bwt · Summary

Python MCP server exposing Bing Webmaster Tools API functionality to AI assistants like Claude.

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

  • SEO professionals using Claude to monitor website performance and submit content for indexing
  • Developers building AI-powered analytics tools that integrate with Bing Webmaster data
  • Content creators optimizing their sites by submitting pages directly through AI assistants

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

Installation

Using uvx (recommended)

Add to Claude desktop config:

"mcpServers": {
  "mcp_server_bwt": {
    "command": "uvx",
    "args": [
      "--from",
      "git+https://github.com/zizzfizzix/mcp-server-bwt",
      "mcp_server_bwt"
    ]
  }
}

Using make

  1. Install dependencies:
make install
  1. Add to Claude desktop config:
"mcpServers": {
  "bwtServer": {
    "command": "/PATH/TO/mcp-server-bwt/.venv/bin/python",
    "args": ["/PATH/TO/mcp-server-bwt/mcp_server_bwt/main.py"],
    "env": {
      "BING_WEBMASTER_API_KEY": "YOUR_API_KEY_HERE"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.