gemini-webapi-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
gemini-webapi-mcp by AndyShaman | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 27 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 44 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsMediaBrowser Automation | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
gemini-webapi-mcp · Summary
MCP server for Google Gemini that provides image generation, editing, chat, and file analysis via browser cookies.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
gemini-webapi-mcp · Use cases
- Generate and edit images through natural language prompts
- Analyze documents, videos and web pages
- Have conversations with Gemini Flash and Pro models
- Create high-resolution artwork without watermarks
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
gemini-webapi-mcp · Install
Installation
**From GitHub (no clone needed):**
uv run --with "gemini-webapi-mcp @ git+https://github.com/AndyShaman/gemini-webapi-mcp.git" gemini-webapi-mcp**Local install:**
git clone https://github.com/AndyShaman/gemini-webapi-mcp.git
cd gemini-webapi-mcp
uv sync
uv run gemini-webapi-mcp**Claude Desktop Configuration:**
Add to claude_desktop_config.json:
{
"mcpServers": {
"gemini": {
"command": "uv",
"args": ["run", "--with", "gemini-webapi-mcp @ git+https://github.com/AndyShaman/gemini-webapi-mcp.git", "gemini-webapi-mcp"]
}
}
}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"]
}
}
}