mcp-server-chart vs MetaSearchMCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MetaSearchMCP by gefsikatsinelou | |
|---|---|---|
| Stars | ★ 4,068 | ★ 44 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SearchAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| 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.
MetaSearchMCP · Summary
A metasearch MCP server that aggregates results from multiple providers with normalized JSON output.
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
MetaSearchMCP · Use cases
- LLM agents performing web research with normalized search results across multiple providers
- Building custom search applications with fallback to different search engines
- Academic research workflows combining Google Scholar, arXiv, and other academic sources
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"]
}
}
}MetaSearchMCP · Install
Installation
One-command local install:
python scripts/install.pyManual install:
git clone https://github.com/gefsikatsinelou/MetaSearchMCP
cd MetaSearchMCP
pip install -e ".[dev]"Claude Desktop Configuration
Add this to your Claude Desktop config.json:
{
"mcpServers": {
"MetaSearchMCP": {
"command": "metasearchmcp-mcp",
"env": {
"ALLOW_UNSTABLE_PROVIDERS": "true",
"SERPBASE_API_KEY": "your_key",
"SERPER_API_KEY": "your_key"
}
}
}
}