mcp-server-chart vs mcp-server-giphy
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-giphy by magarcia | |
|---|---|---|
| Stars | ★ 4,068 | ★ 32 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-server-giphy · Summary
MCP server integrating Giphy API for AI models to search, retrieve, and utilize GIFs.
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
mcp-server-giphy · Use cases
- Enhance AI chat responses with relevant GIFs
- Create dynamic content generators with animated visuals
- Build entertainment-focused AI applications with rich media
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"]
}
}
}mcp-server-giphy · Install
Installation
- Install the package: ``
bash npm install -g mcp-server-giphy``
- Create a
.envfile with your Giphy API key: ``bash GIPHY_API_KEY=your_api_key_here``
- Configure Claude Desktop by adding the following to your
claude_desktop_config.json:
{
"mcpServers": {
"giphy": {
"command": "npx",
"args": ["-y", "mcp-server-giphy"],
"env": {
"GIPHY_API_KEY": "<YOUR_API_KEY>"
}
}
}
}