mcp-server-chart vs konquest-meta-ads-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | konquest-meta-ads-mcp by brandu-mos | |
|---|---|---|
| Stars | ★ 4,068 | ★ 27 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | E-commerceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| 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.
konquest-meta-ads-mcp · Summary
Production-ready MCP server with 57 Meta Ads tools and premium options for supervised campaign 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
konquest-meta-ads-mcp · Use cases
- Supervised Meta Ads campaign management with multi-asset ad creation
- Advertising performance optimization through automated budget adjustments and A/B testing
- Ad creative validation and compliance checking before launch
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"]
}
}
}konquest-meta-ads-mcp · Install
Installation
- Clone and set up the repository:
cd meta-ads-mcp
uv sync
cp .env.example .env- Configure environment variables:
META_ACCESS_TOKEN- Meta Marketing API access token- Optional:
META_APP_SECRET,META_APP_ID,VAULT_PATH
- Add to Claude Code MCP configuration (
.mcp.json):
{
"mcpServers": {
"meta-ads": {
"command": "uv",
"args": ["--directory", "/path/to/meta-ads-mcp", "run", "python", "-m", "meta_ads_mcp"],
"env": {
"META_ACCESS_TOKEN": "your_token_here",
"VAULT_PATH": "/path/to/your/marketing-vault"
}
}
}
}- Run tests (optional):
uv run --extra dev python -m pytest tests/ -v