mcp-server-chart vs ToolsForMCPServer
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ToolsForMCPServer by tanaikech | |
|---|---|---|
| Stars | ★ 4,068 | ★ 105 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ToolsForMCPServer · Summary
An MCP server built with Google Apps Script providing 160+ tools for Google Workspace integration.
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
ToolsForMCPServer · Use cases
- Automating complex multi-step tasks within Google Workspace through Gemini CLI
- Creating custom AI agents with access to Google services using MCP clients
- Revitalizing existing Google Apps Script snippets as MCP 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"]
}
}
}ToolsForMCPServer · Install
Installation
- Create a new Google Apps Script project at [script.google.com](https://script.google.com/home/projects/create)
- Install the required libraries:
- MCPApp (Project Key: 1TlX_L9COAriBlAYvrMLiRFQ5WVf1n0jChB6zHamq2TNwuSbVlI5sBUzh) - ToolsForMCPServer (Project Key: 1lnE7UL1jQgPDbTB9yjhiwZM0SaS9MObhzvWUWb_t8FisO6A3bLepvM2j)
- Add the provided script to your project
- Deploy as a Web App with 'Execute as: Me' and 'Who has access: Anyone'
- Configure Gemini CLI by adding this to your settings.json:
{
"mcpServers": {
"gas_web_apps": {
"command": "npx",
"args": [
"mcp-remote",
"https://script.google.com/macros/s/###/exec?accessKey=sample"
],
"env": {}
}
}
}