mcp-server-chart vs google-docs-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | google-docs-mcp by jag-k | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityAI / LLM ToolsCloud Storage |
| Language | TypeScript | Python |
| Last commit | this month | 8 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
google-docs-mcp · Summary
An MCP server for Google Docs that enables reading documents, managing comments, and text manipulation via OAuth authentication.
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
google-docs-mcp · Use cases
- Automate document processing tasks by reading content and generating reports
- Integrate Google Docs with AI assistants for enhanced document management
- Create workflows that interact with comments and track document changes
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"]
}
}
}google-docs-mcp · Install
Installation
Using CLI (recommended):
# Install the package
pip install google-docs-mcp
# Authorize
google-docs-mcp auth authorize
# Start server
google-docs-mcp serverClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"google_docs_mcp": {
"command": "google-docs-mcp",
"args": ["server"]
}
}
}Using uv:
# Install with uv
uv add google-docs-mcp
# Authorize
uv run google_docs_mcp auth authorize
# Start server
uv run google_docs_mcp server