mcp-server-chart vs MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCP by jina-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 680 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsWeb ScrapingDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MCP · Summary
Jina AI Remote MCP server provides web search, content reading, and AI tools with URL 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
MCP · Use cases
- Web research and content extraction for academic papers and news articles
- AI-powered document analysis and classification
- Parallel web search for comprehensive information gathering
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"]
}
}
}MCP · Install
Installation
For clients supporting remote MCP servers:
{
"mcpServers": {
"jina-mcp-server": {
"url": "https://mcp.jina.ai/v1",
"headers": {
"Authorization": "Bearer ${JINA_API_KEY}" // optional
}
}
}
}For clients not supporting remote MCP servers yet, use mcp-remote as a proxy:
{
"mcpServers": {
"jina-mcp-server": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.jina.ai/v1",
"--header",
"Authorization: Bearer ${JINA_API_KEY}"
]
}
}
}For Claude Code:
claude mcp add -s user --transport http jina https://mcp.jina.ai/v1 \
--header "Authorization: Bearer ${JINA_API_KEY}"