MCP Catalogs
Home

fetch vs google-researcher-mcp

Side-by-side comparison to help you pick between these two MCP servers.

fetch
by modelcontextprotocol
google-researcher-mcp
by zoharbabin
Stars★ 85,748★ 35
30d uses
Score7646
Official
Categories
Web ScrapingAI / LLM ToolsProductivity
SearchWeb ScrapingAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

google-researcher-mcp · Summary

MCP server providing Google search, web scraping, and document parsing with advanced filtering capabilities.

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

google-researcher-mcp · Use cases

  • Research assistants enabling Claude to search the web and synthesize information
  • Content creation for gathering sources and citations
  • Academic research with paper finding and citation extraction

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-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}

google-researcher-mcp · Install

Installation

Claude Desktop (macOS)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "google-researcher": {
      "command": "npx",
      "args": ["-y", "google-researcher-mcp"],
      "env": {
        "GOOGLE_CUSTOM_SEARCH_API_KEY": "YOUR_API_KEY_HERE",
        "GOOGLE_CUSTOM_SEARCH_ID": "YOUR_SEARCH_ID_HERE"
      }
    }
  }
}

Claude Desktop (Windows)

Add to %APPDATA%\Claude\claude_desktop_config.json with the same configuration.

Comparison generated from public README + GitHub signals. Last updated automatically.