Connect the Google Business Profile MCP server to your AI agent Open source, MIT, on npm. Setup instructions for Claude, Cursor and Codex are in the repository; adoption questions — Telegram. GitHub repository Telegram

Google Business Profile: List reviews — MCP tool

Google Business Profile MCP tool: Lists reviews of a location, newest-updated first by default.

Technical name: list_reviews

What task it solves

I want to list reviews.

Lists reviews of a location, newest-updated first by default.

When to use it

Use this capability when you need “List reviews” without doing the same work manually in the Google Business Profile interface. It runs only when an AI client calls it.

What to provide

  • accountIdrequired. Account id — bare "123" or "accounts/123".
  • locationIdrequired. Location id — bare "456", "locations/456" or "accounts/1/locations/456".
  • pageSizeoptional. Reviews per page (1..50 — API cap; default 50).
  • pageTokenoptional. nextPageToken from the previous page.
  • orderByoptional. Sort order; default "updateTime desc".

What it returns

Response: reviews[] of {name, reviewId, reviewer{displayName, isAnonymous}, starRating (ONE..FIVE enum, not a number), comment, createTime, updateTime, reviewReply{comment, updateTime} if answered}, plus averageRating (1–5) and totalReviewCount.

What changes in Google Business Profile

The tool reads Google Business Profile data and does not change it.

Example request

List reviews in Google Business Profile. Ask for any required identifiers that are missing.

Errors and limitations

pageSize caps at 50. Reviews live only on the legacy v4 API (mybusiness.googleapis.com) — they were never migrated to v1.

Access also depends on token permissions, quotas, and upstream API limits.

Related MCP tools

Technical details