mcp-server-chart vs pubmed-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | pubmed-mcp-server by cyanheads | |
|---|---|---|
| Stars | ★ 4,068 | ★ 97 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsProductivityDeveloper 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.
pubmed-mcp-server · Summary
A comprehensive MCP server providing access to PubMed and NCBI E-utilities with 9 tools for research and citation management.
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
pubmed-mcp-server · Use cases
- Researchers can search PubMed and fetch article metadata for literature reviews
- Students and academics can generate properly formatted citations in multiple styles
- Medical professionals can explore MeSH terms to build precise search 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"]
}
}
}pubmed-mcp-server · Install
Installation
Using the public hosted server (recommended)
Configure your MCP client to connect to the public instance:
{
"mcpServers": {
"pubmed": {
"type": "streamable-http",
"url": "https://pubmed.caseyjhand.com/mcp"
}
}
}Self-hosted installation
- Install with Bun:
bunx @cyanheads/pubmed-mcp-server@latest- Or with npm:
npx -y @cyanheads/pubmed-mcp-server@latest- Or with Docker:
docker run -i --rm ghcr.io/cyanheads/pubmed-mcp-server:latestClaude Desktop configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"pubmed": {
"command": "bunx",
"args": ["@cyanheads/pubmed-mcp-server@latest"]
}
}
}