mcp-google-business

mcp-google-business

Enables managing Google Business Profiles through natural language: list locations, reply to reviews, create local posts, and fetch performance metrics.

Category
访问服务器

README

Google Business Profile MCP

npm CI Glama License: MIT

MCP server for Google Business Profile (formerly Google My Business): manage locations, answer reviews, publish local posts and read performance metrics — from Claude, Cursor, Codex and other AI clients, in natural language.

The assistant lists your business locations, replies to fresh reviews, checks how many calls and direction requests you got last month, and posts updates — everything you would otherwise click through in the Business Profile Manager.

Quick start

  1. Get OAuth credentials and make sure your Google Cloud project has approved API access — without it every call fails.

  2. Add the server — e.g. in Claude Code (other clients):

    claude mcp add google-business \
      -e GOOGLE_BUSINESS_CLIENT_ID=your_client_id \
      -e GOOGLE_BUSINESS_CLIENT_SECRET=your_client_secret \
      -e GOOGLE_BUSINESS_REFRESH_TOKEN=your_refresh_token \
      -- npx -y mcp-google-business@latest
    
  3. Ask the assistant: "List my business locations and show the newest unanswered reviews."

What it can do

Group Tools
Accounts list_accounts
Locations (Business Information API) list_locations, get_location, update_location, list_categories, list_attribute_metadata, update_location_attributes, search_chains
Performance get_daily_metrics, fetch_multi_daily_metrics, list_search_keyword_impressions
Reviews (legacy v4 API) list_reviews, get_review, reply_to_review, delete_review_reply
Local posts (legacy v4 API) list_local_posts, create_local_post, update_local_post, delete_local_post
Escape hatch raw_request — any endpoint on any of the four GBP hosts

Under the hood the server talks to all four Google Business Profile hosts behind one OAuth scope (business.manage): Account Management, Business Information and Performance (v1) plus the legacy v4 API, where reviews and local posts still live — they were never migrated to v1. Resilience built in: automatic token refresh, retries with backoff on 429/5xx (writes are never replayed), request timeouts and an SSRF guard.

Example prompts

  • "Reply to the latest 3-star review of my coffee shop — apologize and offer a discount."
  • "How many calls and direction requests did location X get in July, day by day?"
  • "Which search keywords surfaced my business this quarter?"
  • "Publish a post about our new summer menu with a link to the site."
  • "Update the website URL of my downtown location."

API access application

⚠️ Enabling the APIs in Google Cloud Console is NOT enough. Business Profile APIs ship with a default quota of 0 QPM — every call fails (usually 429 RESOURCE_EXHAUSTED) until Google approves your project's "Application for Basic API Access".

To get approved:

  1. Prerequisites: you manage a Business Profile that is verified and active for 60+ days; you apply from an email address that is an owner or manager of that profile; the business has a website matching your application.
  2. Create a Google Cloud project and note its Project Number (Console → Dashboard).
  3. Submit the GBP API contact form — choose "Application for Basic API Access" and fill it in using the authorized business email.
  4. Check approval in Cloud Console → Quotas: 0 QPM = not approved, 300 QPM = approved. Google also sends a follow-up email (no documented SLA).

The server surfaces this on quota errors: if every call fails with a quota message, the error text points back at this form.

Installation

<details open> <summary><b>Claude Code</b></summary>

claude mcp add google-business \
  -e GOOGLE_BUSINESS_CLIENT_ID=your_client_id \
  -e GOOGLE_BUSINESS_CLIENT_SECRET=your_client_secret \
  -e GOOGLE_BUSINESS_REFRESH_TOKEN=your_refresh_token \
  -- npx -y mcp-google-business@latest

</details>

<details> <summary><b>Claude Desktop</b></summary>

claude_desktop_config.json — macOS ~/Library/Application Support/Claude/, Windows %APPDATA%\Claude\

{
  "mcpServers": {
    "google-business": {
      "command": "npx",
      "args": ["-y", "mcp-google-business@latest"],
      "env": {
        "GOOGLE_BUSINESS_CLIENT_ID": "your_client_id",
        "GOOGLE_BUSINESS_CLIENT_SECRET": "your_client_secret",
        "GOOGLE_BUSINESS_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

</details>

<details> <summary><b>Cursor</b></summary>

~/.cursor/mcp.json (or .cursor/mcp.json in the project)

{
  "mcpServers": {
    "google-business": {
      "command": "npx",
      "args": ["-y", "mcp-google-business@latest"],
      "env": {
        "GOOGLE_BUSINESS_CLIENT_ID": "your_client_id",
        "GOOGLE_BUSINESS_CLIENT_SECRET": "your_client_secret",
        "GOOGLE_BUSINESS_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

</details>

<details> <summary><b>VS Code</b></summary>

.vscode/mcp.json — note the servers key (not mcpServers)

{
  "servers": {
    "google-business": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-google-business@latest"],
      "env": {
        "GOOGLE_BUSINESS_CLIENT_ID": "your_client_id",
        "GOOGLE_BUSINESS_CLIENT_SECRET": "your_client_secret",
        "GOOGLE_BUSINESS_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

</details>

Getting credentials

The server uses standard Google OAuth 2.0 with a long-lived refresh token (scope https://www.googleapis.com/auth/business.manage):

  1. Create a Google Cloud project (or reuse one) at console.cloud.google.com and enable the APIs: My Business Account Management API, My Business Business Information API, Business Profile Performance API and Google My Business API (the legacy v4 — needed for reviews and posts).
  2. Apply for API access — see API access application. Without approval the quota stays at 0 and every call fails.
  3. Configure the OAuth consent screen (External is fine; add your Google account as a test user while the app is unpublished).
  4. Create an OAuth client id (Credentials → Create credentials → OAuth client ID, type "Web application"; add https://developers.google.com/oauthplayground as an authorized redirect URI if you plan to use the playground below). Save the client id and client secret.
  5. Mint a refresh token with the account that owns/manages the Business Profile. The quickest way is the OAuth 2.0 Playground:
    • gear icon → check "Use your own OAuth credentials" → paste your client id/secret;
    • in step 1 enter the scope https://www.googleapis.com/auth/business.manage and authorize with the business owner/manager account;
    • in step 2 press "Exchange authorization code for tokens" and copy the refresh token.
  6. Put the three values into GOOGLE_BUSINESS_CLIENT_ID, GOOGLE_BUSINESS_CLIENT_SECRET and GOOGLE_BUSINESS_REFRESH_TOKEN.

⚠️ The credentials are stored in plain text in your MCP client config — treat them like passwords. For a quick one-hour test you can instead set GOOGLE_BUSINESS_ACCESS_TOKEN to a token from the playground's step 2 (it expires in ~1 hour and is not refreshed).

Configuration

Variable Required Default Description
GOOGLE_BUSINESS_CLIENT_ID yes¹ OAuth2 client id (Google Cloud Console).
GOOGLE_BUSINESS_CLIENT_SECRET yes¹ OAuth2 client secret.
GOOGLE_BUSINESS_REFRESH_TOKEN yes¹ OAuth2 refresh token, scope business.manage.
GOOGLE_BUSINESS_ACCESS_TOKEN no¹ Ready-made access token (~1 h) instead of the trio above.
GOOGLE_BUSINESS_TIMEOUT_MS no 60000 Per-request timeout, ms.
GOOGLE_BUSINESS_MAX_RETRIES no 3 Retries on 429 (and 5xx/network for idempotent calls).
GOOGLE_BUSINESS_ACCOUNTS_API_BASE no https://mybusinessaccountmanagement.googleapis.com Account Management host override.
GOOGLE_BUSINESS_INFO_API_BASE no https://mybusinessbusinessinformation.googleapis.com Business Information host override.
GOOGLE_BUSINESS_PERFORMANCE_API_BASE no https://businessprofileperformance.googleapis.com Performance host override.
GOOGLE_BUSINESS_V4_API_BASE no https://mybusiness.googleapis.com Legacy v4 host override (reviews, posts).

¹ Either the CLIENT_ID + CLIENT_SECRET + REFRESH_TOKEN trio or ACCESS_TOKEN must be set.

Requirements

  • Node.js 20+ (runs via npx, no separate install needed).
  • A Google Cloud project with the GBP APIs enabled and an approved Basic API Access application — see above.

Limits

  • 300 QPM per API for approved projects; 10 edits per minute per Business Profile (a hard cap Google does not raise) — the write tools note this in their descriptions.
  • accounts.list pages are capped at 20 items, reviews at 50 — the tools paginate with pageToken.
  • Performance metrics lag by a few days; empty values near today are normal.
  • Review replies only work on verified locations.

Documentation

Support

Questions, ideas and contributions — Telegram: @gistrec or GitHub issues.

License

MIT — see LICENSE.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选