MCP Catalogs
Home

mcp-server-chart vs bing-search-mcp

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

mcp-server-chart
by antvis
bing-search-mcp
by leehanchung
Stars★ 4,068★ 79
30d uses10,239
Score8440
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
SearchAI / LLM Tools
LanguageTypeScriptPython
Last committhis month14 mo ago

mcp-server-chart · Summary

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

bing-search-mcp · Summary

MCP server providing web, news and image search capabilities via Bing Search API.

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

bing-search-mcp · Use cases

  • Enable AI assistants to perform real-time web searches for current information
  • Retrieve the latest news articles for timely information gathering
  • Find and process visual content through Bing's image search capabilities

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

bing-search-mcp · Install

Installation

  1. Clone the repository
  2. Install dependencies:

`` uv venv source .venv/bin/activate # On Windows: .venv\Scripts\activate uv pip install -e . ``

Configuration

Set the required environment variables:

export BING_API_KEY="your-bing-api-key"
export BING_API_URL="https://api.bing.microsoft.com/"  # Optional

Claude Desktop Configuration

Add the following to your Claude Desktop configuration file:

{
  "mcpServers": {
    "bing-search": {
      "command": "uvx",
      "args": [
        "/path/to/your/bing-search-mcp"
      ],
      "env": {
        "BING_API_KEY": "your-bing-api-key"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.