mcp-server-chart vs mcp-google-tasks
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-google-tasks by ktmage | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 29 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 13 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-google-tasks · Summary
MCP server for Google Tasks integration, allowing AI assistants to manage tasks through the protocol.
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-google-tasks · Use cases
- AI assistants managing personal task lists
- Automated task creation based on other AI outputs
- Productivity tools integrating with Google Tasks
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-google-tasks · Install
Installation
- Clone the repository:
git clone <repository URL>
cd mcp-google-tasks- Install dependencies:
npm install- Configure Google Cloud Project:
- Enable Tasks API in Google Cloud Console
- Create OAuth 2.0 credentials for a desktop app
- Rename credentials file to
credentials.jsonand place in project root
- Build and run:
npm run build
node build/index.jsClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"google-tasks": {
"command": "node",
"args": ["/full/path/to/mcp-google-tasks/build/index.js"]
}
}
}