mcp-server-chart vs MCPApp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCPApp by tanaikech | |
|---|---|---|
| Stars | ★ 4,068 | ★ 47 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MCPApp · Summary
Google Apps Script-based MCP server implementation for AI clients with tools and prompts support.
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
MCPApp · Use cases
- Building AI assistants that interact with Google services via GAS
- Creating MCP clients that leverage Google Apps Script functionality
- Developing standardized interfaces between AI systems and Google Workspace
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"]
}
}
}MCPApp · Install
Installation
- Clone or download the repository
- Deploy as a Google Apps Script web app
- Set up appropriate permissions for Google services
- Configure the access key in the initialization
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcpapp": {
"command": "curl",
"args": ["-L", "YOUR_MCP_SERVER_URL"]
}
}
}