mcp-google-business
This MCP server enables AI-driven management of Google Business Profile. It lets you:
Manage Accounts & Locations: List accounts, list/filter/sort locations, get or update location details (name, address, hours, website, phone), search business chains, and manage location attributes.
Discover Categories & Attributes: Search Google’s business category taxonomy, list available attributes for a location or category (e.g., Wi‑Fi, wheelchair access), and update attribute values.
Retrieve Performance Analytics: Fetch daily timeseries for metrics like impressions, direction requests, call clicks, website clicks, and bookings; retrieve multiple metrics in a single batch to save quota; and view monthly search keyword impressions.
Handle Reviews: List, get, reply to, or delete replies to customer reviews (legacy v4 API).
Manage Local Posts: List, create, update, and delete posts (What’s New, Events, Offers) with text, call-to-action, event details, offers, or media (legacy v4 API).
Escape Hatch: Make raw API calls to any endpoint across all four Google Business Profile API hosts for functionality not covered by dedicated tools.
The server is production‑ready with automatic token refresh, retries, timeouts, SSRF protection, and flexible OAuth configuration (client ID/secret/refresh token or access token).
Provides tools for managing Google Business Profiles, including listing locations, replying to reviews, creating local posts, and retrieving performance metrics.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-google-businessList my business locations and show the newest unanswered reviews."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Business Profile MCP
English | Русский
A1 Google Business Profile MCP lets an AI app work with your Google Business Profile locations in natural language. Inspect locations and performance, respond to reviews, prepare local posts and update profile information deliberately.
It connects to Google’s current Business Profile APIs and the legacy API where reviews and posts still live. A Google account and OAuth credentials alone are not enough: Google must approve Basic API Access for the Cloud project.
20 tools. Location and account data, performance, reviews, local posts, categories and attributes.
Real approval gate. Projects start at 0 QPM; every API call fails until Google approves the Basic API Access application.
Separate release boundary. A prepared reply, post or location update changes public business information only after the client confirms the write operation.
Four API surfaces. Account Management, Business Information, Performance and legacy v4 work through one
business.manageOAuth scope.
Start with a read-only question:
List my locations and show the newest reviews that do not have a reply.
Connect the server · Explore use cases · Open technical documentation
See it work in a minute
You: List my locations and show the newest reviews that do not have a reply.
Assistant: Shows the locations and recent reviews. Nothing changes.
You: Draft a reply to the newest three-star review at the downtown location. Apologize and offer to help.
Assistant: Shows the location, review and proposed reply, then asks for confirmation before publishing it.
You: Confirm.
Assistant: Publishes the reply. It does not alter the review, other locations or posts.
Related MCP server: Local Business Data MCP Server
Contents
Quick start
You need Node.js 20+, a verified Google Business Profile, a Google Cloud OAuth client and an approved Basic API Access application.
Add the server to your AI app.
Start with the read-only question above.
In Settings → Plugins → MCP servers, choose Add server, then add npx -y mcp-google-business@latest with GOOGLE_BUSINESS_CLIENT_ID, GOOGLE_BUSINESS_CLIENT_SECRET and GOOGLE_BUSINESS_REFRESH_TOKEN.
codex mcp add google-business \
--env GOOGLE_BUSINESS_CLIENT_ID=your_client_id \
--env GOOGLE_BUSINESS_CLIENT_SECRET=your_client_secret \
--env GOOGLE_BUSINESS_REFRESH_TOKEN=your_refresh_token \
-- npx -y mcp-google-business@latest
codex mcp listclaude mcp add \
--env GOOGLE_BUSINESS_CLIENT_ID=your_client_id \
--env GOOGLE_BUSINESS_CLIENT_SECRET=your_client_secret \
--env GOOGLE_BUSINESS_REFRESH_TOKEN=your_refresh_token \
--transport stdio --scope user google-business \
-- npx -y mcp-google-business@latest
claude mcp listOpen Settings → Developer → Edit Config and add:
{"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"}}}}If Edit Config is unavailable, edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows. Claude Desktop MCP documentation
Add {"mcpServers":{"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"}}}} to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows. Cursor MCP documentation
Run MCP: Open User Configuration and add:
{"servers":{"google-business":{"type":"stdio","command":"npx","args":["-y","mcp-google-business@latest"],"env":{"GOOGLE_BUSINESS_CLIENT_ID":"${input:gbp_client_id}","GOOGLE_BUSINESS_CLIENT_SECRET":"${input:gbp_client_secret}","GOOGLE_BUSINESS_REFRESH_TOKEN":"${input:gbp_refresh_token}"}}},"inputs":[{"type":"promptString","id":"gbp_client_id","description":"Google OAuth client ID"},{"type":"promptString","id":"gbp_client_secret","description":"Google OAuth client secret","password":true},{"type":"promptString","id":"gbp_refresh_token","description":"Google OAuth refresh token","password":true}]}Check it with MCP: List Servers. VS Code MCP documentation
What you can ask it to do
List locations, categories, attributes and current profile information.
Show calls, direction requests and search keyword impressions for a chosen period.
Find fresh reviews, draft a reply and publish it after confirmation.
Prepare, update or remove a local post.
Update a selected location field or attribute after showing the exact change.
What can change
Operation | What happens | Confirmation boundary |
Accounts, locations, categories, attributes, performance, reviews and posts | Reads existing profile data | No change |
Update a location or its attributes | Changes public business profile data | Changes a location |
Reply to a review | Publishes a public owner reply | Changes public content |
Create or update a local post | Publishes or changes public local content | Changes public content |
Delete a review reply or local post | Removes public content | Destructive |
Raw API request | May call any write or delete endpoint | Potentially destructive |
The AI client controls confirmations; the server marks tools so the client can distinguish inspection from a live change.
Getting access
Google requires both OAuth and Basic API Access approval.
Use a verified and active Business Profile that has existed for at least 60 days; apply from an owner or manager account and have a business website that matches the application.
Create a Google Cloud project, enable My Business Account Management API, Business Information API, Business Profile Performance API and Google My Business API (legacy v4).
Submit the GBP API contact form as Application for Basic API Access. Before approval, quota is 0 QPM; approved projects receive 300 QPM per API.
Create an OAuth client, obtain a refresh token for
https://www.googleapis.com/auth/business.manage, and set the threeGOOGLE_BUSINESS_*variables.
Treat the client secret and refresh token as passwords. An access token is a short-lived alternative for one-off use.
Configuration
Variable | Required | Description |
| Yes* | OAuth client ID. |
| Yes* | OAuth client secret. |
| Yes* | OAuth refresh token with |
| Yes* | Short-lived alternative to the OAuth trio. |
| No | Per-request timeout; default |
| No | Temporary-error retries; default |
* Provide either the OAuth trio or an access token. API host overrides are documented in the tool reference.
Data, limits and background work
Google receives the profile requests. Anonymous telemetry includes installation and version data plus tool names, never OAuth secrets, profile data, arguments or prompts. Set
ASKADS_TELEMETRY=0to opt out.Real edit caps. Approved projects receive 300 QPM per API; Google also limits each Business Profile to 10 edits per minute. Performance metrics can lag by a few days, and review replies require verified locations.
No background monitoring. The server runs only while called. If your AI app supports scheduled tasks, it can periodically review new feedback or metrics.
Technical documentation
MCP capability catalog — task-oriented pages for every tool.
Support
Found a bug or need a scenario? Create an issue or write in Telegram.
Maintenance
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to fetch, analyze, and respond to Google Business Profile reviews with AI-generated replies through secure OAuth integration with Google's My Business API.6MIT
- AlicenseBqualityDmaintenanceEnables access to Google Maps business data including search, reviews, photos, and geocoding. Supports searching businesses by location, area, or coordinates, retrieving detailed business information, reviews, and performing reverse geocoding operations.13MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Google Business Profiles by creating posts, replying to reviews, listing locations, and more through natural language commands.1
- AlicenseBqualityAmaintenanceEnables managing WhatsApp Business accounts through natural language, including sending messages, managing contacts, and querying conversations.6216ISC
Related MCP Connectors
Read and filter your Google Business Profile reviews, get stats, and send review requests.
Live Google Maps business search, review, and photo data for AI agents over MCP.
Local business intel for AI agents: audits, lead scoring, tech stack, prospecting.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/A1-x-Tech/mcp-google-business'
If you have feedback or need assistance with the MCP directory API, please join our Discord server