Google MCP Server

Google Alerts MCP Server for fetching topic-based news and information

Local serverstdioPython

What is the Google MCP server?

Google Alerts MCP Server for fetching topic-based news and information. The google mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 11 defined tools rather than through you.

What it actually does

English README

Its toolset

Everything the assistant can do here goes through one of these:

  • domain — Google 域名(通常是 "com")
  • language — 状态中的语言代码
  • region — 状态中的地区代码
  • number_param — 数字参数(因语言而异)
  • locale_format — 区域格式字符串
  • token — 认证令牌(避免检测的关键)
  • mcp — Model Context Protocol 支持
  • httpx — 异步 HTTP 客户端
  • beautifulsoup4 — HTML 解析
  • pydantic — 数据验证和序列化
  • search_google_alerts — The search_google_alerts tool exposed by this server

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Google's toolset — domain, language, region and 8 more — is a fair guide to whether it matches your workflow.

This entry was verified against Google's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Google.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the google mcp server does with a few real requests.

Available tools

ToolWhat it does
domainGoogle 域名(通常是 "com")
language状态中的语言代码
region状态中的地区代码
number_param数字参数(因语言而异)
locale_format区域格式字符串
token认证令牌(避免检测的关键)
mcpModel Context Protocol 支持
httpx异步 HTTP 客户端
beautifulsoup4HTML 解析
pydantic数据验证和序列化
search_google_alertsThe search_google_alerts tool exposed by this server.

How to install the Google MCP server

或者如果已经发布为包:

```json
{
  "mcpServers": {
    "google-alerts": {
      "command": "uvx",
      "args": ["google-alerts-mcp"],
      "env": {}
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Google to domain.
  • Use Google to language.
  • Use Google to region.

Frequently asked questions

It connects Google to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (domain, language, region, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Google directly.