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: Multiple daily metrics at once — MCP tool

Google Business Profile MCP tool: Returns daily time series for SEVERAL performance metrics of a location in one call — same data as get_daily_metrics, but batched.

Technical name: fetch_multi_daily_metrics

What task it solves

I want to multiple daily metrics at once.

Returns daily time series for SEVERAL performance metrics of a location in one call — same data as get_daily_metrics, but batched.

When to use it

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

What to provide

  • locationIdrequired. Location id from list_locations (the unobfuscated listing id; locations/123 also works).
  • dailyMetricsrequired. The metrics to fetch (one or more).
  • startDaterequired. Range start (inclusive), e.g. 2026-07-01.
  • endDaterequired. Range end (inclusive), e.g. 2026-07-31.

What it returns

Returns daily time series for SEVERAL performance metrics of a location in one call — same data as get_daily_metrics, but batched. Response: multiDailyMetricTimeSeries[].dailyMetricTimeSeries[] of {dailyMetric, timeSeries.datedValues[]}; values are int64 strings.

What changes in Google Business Profile

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

Example request

Multiple daily metrics at once in Google Business Profile. Ask for any required identifiers that are missing.

Errors and limitations

Prefer this over several get_daily_metrics calls to save quota. Metrics for the most recent days are not available immediately (multi-day lag, typically a few days) — empty values near today are normal, not an error.

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

Related MCP tools

Technical details