mcp-server-chart vs bgpt-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | bgpt-mcp by connerlambden | |
|---|---|---|
| Stars | ★ 4,068 | ★ 20 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsresearchDatabase |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
bgpt-mcp · Summary
A remote MCP server for searching scientific papers with full-text experimental data extraction.
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
bgpt-mcp · Use cases
- Literature reviews with real experimental data analysis
- Evidence synthesis by grounding AI responses in actual study findings
- Research assistance by finding papers based on methodology or outcomes
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"]
}
}
}bgpt-mcp · Install
Installation Options
**Option A: Remote Connection (Recommended)**
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"bgpt": {
"url": "https://bgpt.pro/mcp/sse"
}
}
}For other MCP clients like Cursor, add to .cursor/mcp.json or equivalent config file using the same structure.
**Option B: Via npx**
{
"mcpServers": {
"bgpt": {
"command": "npx",
"args": ["-y", "bgpt-mcp"]
}
}
}**Option C: Install Globally**
npm install -g bgpt-mcpThen add to MCP config:
{
"mcpServers": {
"bgpt": {
"command": "bgpt-mcp"
}
}
}