Google Business
HTTPv1.0.0Credential RequiredJan 22, 2026
A Model Context Protocol (MCP) server that provides access to Google Business Profile APIs for accounts, locations, reviews, posts, and insights.
Authentication is handled by passing a valid oauth_token with each tool call.
https://www.googleapis.com/auth/business.manage.This server includes tools for:
list_accountslist_locationsget_locationlist_reviewsreply_to_reviewdelete_review_replylist_postscreate_postdelete_postget_insightsget_review_summarypip install -r requirements.txtserver.py:stdio transport:python server.pysse transport:python server.py --transport sse --host 127.0.0.1 --port 8001streamable-http transport:python server.py --transport streamable-http --host 127.0.0.1 --port 8001oauth_token.accounts/123456789accounts/123456789/locations/987654321accounts/123456789/locations/987654321/reviews/555{
"tool": "list_locations",
"arguments": {
"oauth_token": {
"token": "ya29...",
"refresh_token": "1//...",
"token_uri": "https://oauth2.googleapis.com/token",
"client_id": "...apps.googleusercontent.com",
"client_secret": "...",
"scopes": [
"https://www.googleapis.com/auth/business.manage"
]
},
"account_name": "accounts/123456789"
}
}The runtime entrypoint for this MCP server is server.py, which:
/mcp for streamable HTTP transport.