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 uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SearchAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 14 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-chartFor 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
- Clone the repository
- 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/" # OptionalClaude 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"
}
}
}
}