mcp-server-chart vs jinaai-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | jinaai-mcp-server by cyanheads | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Web ScrapingAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
jinaai-mcp-server · Summary
A production-ready MCP server that enables AI systems to read and extract clean content from webpages using the Jina AI Reader 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
jinaai-mcp-server · Use cases
- Automating research by extracting content from multiple articles and documentation sources
- Enabling AI assistants to access real-time web information for up-to-date responses
- Integrating web content processing into AI workflows without leaving the host application
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"]
}
}
}jinaai-mcp-server · Install
Prerequisites
- Node.js (>=18.0.0)
- npm
Installation
Using MCP Client Settings
Add the following to your MCP client's configuration file:
{
"mcpServers": {
"jinaai-mcp-server": {
"command": "npx",
"args": ["@cyanheads/jinaai-mcp-server"],
"env": {
"MCP_TRANSPORT_TYPE": "http",
"MCP_HTTP_PORT": "3018",
"JINA_API_KEY": "YOUR_JINA_API_KEY_HERE"
}
}
}
}From Source
- Clone the repository:
``bash git clone https://github.com/cyanheads/jinaai-mcp-server.git cd jinaai-mcp-server ``
- Install dependencies:
``bash npm install ``
- Build the project:
``bash npm run build ``