mcp-server-chart vs webfetch-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | webfetch-mcp by manooll | |
|---|---|---|
| Stars | ★ 4,068 | ★ 26 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Web ScrapingSearchAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
webfetch-mcp · Summary
An MCP server providing real-time web access with tunable search and clean content extraction for local AI models.
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
webfetch-mcp · Use cases
- Research assistants accessing the latest academic papers and technical documentation
- Local AI models staying current with news and real-time information
- Content extraction for analysis while filtering out ads and navigation elements
- Scientific research across multiple specialized databases with targeted queries
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"]
}
}
}webfetch-mcp · Install
Installation
Prerequisites
- Node.js 18+
- Docker & Docker Compose
- SearxNG instance
Steps
- Install SearxNG:
git clone https://github.com/searxng/searxng-docker.git
cd searxng-docker
sed -i "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.yml
docker compose up -d- Install WebFetch.MCP:
git clone https://github.com/manull/webfetch-mcp.git
cd webfetch-mcp
npm install
node server.mjs- Configure in LM Studio or Claude Desktop:
{
"mcpServers": {
"webfetch": {
"command": "node",
"args": ["/full/path/to/webfetch-mcp/server.mjs"],
"env": {
"SEARXNG_BASE": "http://localhost:8080"
}
}
}
}