Google Search MCP Server avatar

Google Search MCP Server

Under maintenance

Pricing

Pay per usage

Go to Apify Store
Google Search MCP Server

Google Search MCP Server

Under maintenance

Expose Google Search to your AI Agents (Claude Desktop, Cursor) as a standardized Model Context Protocol (MCP) Server via SSE HTTP, with Pay-Per-Event billing.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

viralanalyzer

viralanalyzer

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 minutes ago

Last modified

Categories

Share

Google Search MCP Server Scraper

Connect your local or cloud AI agents (like Claude Desktop, Cursor, Windsurf, or LangChain) directly to real-time, organic Google Search results using the standardized Model Context Protocol (MCP) via high-performance SSE (Server-Sent Events) HTTP.

Fully integrated with Apify's residential/datacenter proxy pool and powered by a highly cost-efficient Pay-Per-Event (PPE) model.


🇧🇷 Português

Funcionalidades (Features)

  • Compatibilidade MCP Nativa: Desenvolvido sobre o SDK oficial da Anthropic (@modelcontextprotocol/sdk).
  • Operação SSE HTTP: Roda como um microserviço HTTP persistente na nuvem Apify pronto para conexões SSE.
  • Busca Orgânica Inteligente: Extrai títulos, links reais diretos e descrições (snippets) de resultados do Google Search sem necessidade de chaves de API pagas.
  • Segurança de IP (Anti-Bot): Utiliza a rotação automática de IPs de proxy da Apify (incluindo residencial como fallback) para evitar CAPTCHAs ou bloqueios.
  • Precificação Pay-Per-Event (PPE): Você só paga frações de centavos por pesquisa realizada na nuvem, com custo operacional de infraestrutura zero para o editor do portfólio.
  • Modo de Busca Direta (Autoteste): Modos selecionáveis no input para buscas síncronas de autoteste da plataforma.

Como Conectar seu Agente de IA (Claude Desktop)

Para configurar este Actor como ferramenta no seu Claude Desktop, adicione as seguintes linhas no seu arquivo de configuração claude_desktop_config.json:

{
"mcpServers": {
"google-search": {
"url": "https://api.apify.com/v2/acts/viralanalyzer~mcp-google-search/runs?token=SEU_APIFY_TOKEN",
"method": "sse"
}
}
}

🇺🇸 English

Features

  • Native MCP Compatibility: Fully compliant with Anthropic's official Model Context Protocol server specification.
  • SSE HTTP Server: Runs as a persistent cloud daemon on Apify's serverless infrastructure, exposing SSE (Server-Sent Events) endpoints.
  • Organic Search Extraction: Scrapes titles, direct URLs, and snippets from Google Search without requiring paid external search API keys.
  • Anti-Bot Resilience: Seamlessly integrates Apify’s proxy rotation (datacenter/residential) to bypass captchas and scraping blocks.
  • Pay-Per-Event (PPE) Pricing: Charged transparently per search query triggered, bypassing the typical 14-day free trial limits.
  • Direct Mode: Standard execution mode returning dataset items directly, enabling easy automated platform testing.

Configuring Claude Desktop / Cursor

Add the following connection configuration block to your local claude_desktop_config.json to empower your local AI with search capabilities:

{
"mcpServers": {
"google-search": {
"url": "https://api.apify.com/v2/acts/viralanalyzer~mcp-google-search/runs?token=YOUR_APIFY_TOKEN",
"method": "sse"
}
}
}

💸 Pricing (Precificação)

  • Search Query Execution: Charged at $0.05 USD per successful search query event triggered (search-query event).
  • Owner Skip: Free execution for publisher owner credentials.

🔧 Input Parameter Schema

FieldTypeDescriptionDefault
modestringOperation mode (mcp for daemon server, direct for single search)."mcp"
querystringOrganic search query (used in direct search mode / autotests)."Apify platform"
maxResultsintegerNumber of organic results to extract (1-50).10
proxyConfigurationobjectProxy server options (residential recommended for massive runs).{ "useApifyProxy": true }

📊 Output Schema (Direct Mode)

A sample JSON output from direct search execution:

[
{
"position": 1,
"title": "Apify: Web Scraping and Automation Platform",
"url": "https://apify.com/",
"description": "Apify is a cloud web scraping and data extraction platform. Build, run, and share serverless web scrapers and automation tools.",
"scrapedAt": "2026-05-24T00:00:00.000Z"
}
]