mcp-gsc vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
mcp-gsc by AminForou | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 843 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 55 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsseoWeb Scraping | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-gsc · Summary
MCP server connecting Google Search Console to AI assistants for SEO analysis through natural language conversations.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-gsc · Use cases
- Analyze SEO performance trends and identify top-performing search queries
- Check indexing status and crawl information for specific pages
- Manage sitemaps and submit new ones to Google
- Compare performance metrics between different time periods
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-gsc · Install
Installation
Option A — uvx (Recommended)
# 1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
source $HOME/.local/bin/env
echo 'source $HOME/.local/bin/env' >> ~/.zshrc**Claude Desktop Config (OAuth)**:
{
"mcpServers": {
"gscServer": {
"command": "/FULL/PATH/TO/uvx",
"args": ["mcp-search-console"],
"env": {
"GSC_OAUTH_CLIENT_SECRETS_FILE": "/full/path/to/client_secrets.json"
}
}
}
}Option B — Clone
git clone https://github.com/AminForou/mcp-gsc.git
cd mcp-gsc
uv venv .venv
uv pip install -r requirements.txtConfigure with your Google API credentials first (detailed steps in README).
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"]
}
}
}