mcp-server-chart vs buttondown-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | buttondown-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
buttondown-mcp · Summary
MCP server for Buttondown newsletter service with CLI and programmatic 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
buttondown-mcp · Use cases
- Newsletter creators managing drafts and scheduling through AI assistants
- Automating email marketing campaigns with LLM integration
- Tracking newsletter performance analytics via AI tools
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"]
}
}
}buttondown-mcp · Install
# Install using pnpm (recommended)
pnpm install
# Or using npm
npm install
# Or using yarn
yarn install
# Start the MCP server
pnpm mcp:startFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"buttondown": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"BUTTONDOWN_API_KEY": "your_api_key"
}
}
}
}