mcp-server-chart vs ig-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ig-mcp by jlbadano | |
|---|---|---|
| Stars | ★ 4,068 | ★ 127 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaCommunicationProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ig-mcp · Summary
Production-ready MCP server enabling AI applications to interact with Instagram Business accounts through the Graph 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
ig-mcp · Use cases
- Social media managers analyzing engagement metrics and creating content strategies
- Marketing teams automating Instagram content publishing
- Business owners monitoring their Instagram performance through AI assistants
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"]
}
}
}ig-mcp · Install
Installation
- Clone the repository:
git clone <repository-url>
cd ig-mcp- Install dependencies:
pip install -r requirements.txt- Set up environment variables:
cp .env.example .env
# Edit .env with your Instagram API credentials- Configure the MCP server:
# Edit config.json with your specific settings- Add to Claude Desktop:
{
"mcpServers": {
"instagram": {
"command": "python",
"args": ["/path/to/ig-mcp/src/instagram_mcp_server.py"],
"env": {
"INSTAGRAM_ACCESS_TOKEN": "your_access_token"
}
}
}
}