mcp-gsc vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
mcp-gsc by AminForou | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 843 | ★ 85,748 |
| 30d uses | — | — |
| Score | 55 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsseoWeb Scraping | Web ScrapingAI / LLM 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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).
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}