mcp-server-chart vs mcp-gemini-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-gemini-server by bsmi021 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 35 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsMedia |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 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-gemini-server · Summary
A TypeScript MCP server wrapping Google Gemini API, offering tools for text generation, multimedia analysis, and function calling.
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-gemini-server · Use cases
- Analyzing YouTube videos for educational content summarization
- Generating text content with system instructions and cached context
- Performing web content analysis through URL processing
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-gemini-server · Install
Installation & Setup
- **Clone/Place Project:** Ensure the
mcp-gemini-serverproject directory is accessible. - **Install Dependencies:**
``bash npm install ``
- **Build Project:**
``bash npm run build ``
- **Generate Connection Token:** Create a secure token using Node.js crypto:
``bash node -e "console.log(require('crypto').randomBytes(32).toString('hex'))" ``
- **Configure MCP Client:** Add to your settings file:
``json { "mcpServers": { "gemini-server": { "command": "node", "args": ["/path/to/mcp-gemini-server/dist/server.js"], "env": { "GOOGLE_GEMINI_API_KEY": "YOUR_API_KEY", "MCP_SERVER_HOST": "localhost", "MCP_SERVER_PORT": "8080", "MCP_CONNECTION_TOKEN": "YOUR_GENERATED_CONNECTION_TOKEN", "GOOGLE_GEMINI_MODEL": "gemini-1.5-flash" } } } } ``