mcp-server-chart vs google-researcher-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | google-researcher-mcp by zoharbabin | |
|---|---|---|
| Stars | ★ 4,068 | ★ 35 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SearchWeb ScrapingAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
google-researcher-mcp · Summary
MCP server providing Google search, web scraping, and document parsing with advanced filtering capabilities.
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
google-researcher-mcp · Use cases
- Research assistants enabling Claude to search the web and synthesize information
- Content creation for gathering sources and citations
- Academic research with paper finding and citation extraction
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"]
}
}
}google-researcher-mcp · Install
Installation
Claude Desktop (macOS)
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"google-researcher": {
"command": "npx",
"args": ["-y", "google-researcher-mcp"],
"env": {
"GOOGLE_CUSTOM_SEARCH_API_KEY": "YOUR_API_KEY_HERE",
"GOOGLE_CUSTOM_SEARCH_ID": "YOUR_SEARCH_ID_HERE"
}
}
}
}Claude Desktop (Windows)
Add to %APPDATA%\Claude\claude_desktop_config.json with the same configuration.