Back to Browse

Google Analytics MCP Server

Data & AnalyticsModerate6.3MCP RegistryLocal
Free

Server data from the Official MCP Registry

Google Analytics 4: 27 read-only tools across the Data API and the Admin API.

About

Google Analytics 4: 27 read-only tools across the Data API and the Admin API.

Security Report

6.3
Moderate6.3Moderate Risk

Valid MCP server (1 strong, 2 medium validity signals). 5 known CVEs in dependencies (0 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.

3 files analyzed · 6 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

What You'll Need

Set these up before or after installing:

OAuth client ID.Optional

Environment variable: GA4_CLIENT_ID

OAuth client secret.Required

Environment variable: GA4_CLIENT_SECRET

OAuth refresh token, analytics.readonly scope.Required

Environment variable: GA4_REFRESH_TOKEN

Default GA4 property ID.Optional

Environment variable: GA4_PROPERTY_ID

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "com-getmcpads-google-analytics": {
      "env": {
        "GA4_CLIENT_ID": "your-ga4-client-id-here",
        "GA4_PROPERTY_ID": "your-ga4-property-id-here",
        "GA4_CLIENT_SECRET": "your-ga4-client-secret-here",
        "GA4_REFRESH_TOKEN": "your-ga4-refresh-token-here"
      },
      "args": [
        "-y",
        "@getmcpads/google-analytics-mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

google-analytics-mcp-server

CI License: Apache 2.0 Node

An open-source Model Context Protocol server for Google Analytics 4. It lets Claude, ChatGPT, Cursor or any MCP client query your analytics data and inspect how your property is configured.

Read-only, with no way to turn that off. You run it, and your credentials stay on your machine.

npx -y @getmcpads/google-analytics-mcp-server

Also listed in the MCP Registry as com.getmcpads/google-analytics, so clients that read the registry can install it by name.

Prefer not to run it yourself? getmcpads.com is the hosted version of this server, with Google Analytics alongside Meta Ads, Google Ads, TikTok Ads, Pinterest Ads and Search Console behind a single endpoint, hosted OAuth, and cross-platform reporting. Same tools, same safety model, no setup.


What you get

27 read toolsReports, pivots, funnels, realtime, plus the Admin API: properties, data streams, custom definitions, key events, audiences
DiagnosticsEcommerce, BigQuery export, server-side tagging, audience exports, quota snapshots
51 metrics, 62 dimensionsWith a compatibility matrix that catches invalid combinations before they hit the API
6 resourcesLive catalogues the model can read: metrics, dimensions, compatibility rules, 12 workflow recipes
Identifier redactionUser, email and device identifiers redacted by default on access bindings and audience exports, with explicit opt-in to see them
No writes at allNot a flag, a property of the code. See below

Compatibility, checked before the call

GA4 rejects many metric and dimension combinations, and its errors rarely explain which pair is at fault. This server carries the compatibility matrix, so ga4_check_compatibility and ga4_validate_query let the model verify a combination before spending a call and a quota token on it.

Quotas matter here more than on ad platforms: GA4 charges tokens per property per day, and a few careless exploratory queries can exhaust them. ga4_get_property_quotas_snapshot shows what is left.


How this compares to Google's own MCP server

The Google Analytics team ships an official MCP server, and it is good. It is Apache-2.0, runs locally, is read-only, and has a large community. Be clear about what differs.

Google's official serverThis servergetmcpads.com
Tools72727, plus 5 other platforms
HostingLocal, via pipxLocal, via npxHosted for you
Read-only
Reportsrun_report, run_funnel_report, realtimeSame, plus pivots, batch reports, advanced funnelsSame
Admin APIAccount summaries, property details, custom definitionsBroader: data streams, key events, channel groups, audiences, audience exportsSame
DiagnosticsEcommerce, BigQuery export, server-side tagging, quotasSame
Metric compatibilityNoneCatalogue and matrix, checkable before the callSame
Identifier redactionDefault on, opt-in to disableSame
LanguagePythonTypeScript
StatusLabelled experimental by Google1.0

Neither is more private than the other. Both run locally and read only. If the seven official tools cover what you need, and your model writes clean GA4 report requests, use Google's: it is maintained by the team that owns the API.

Choose this one when you want named metrics validated against a compatibility matrix rather than raw request bodies, when you need the configuration and diagnostics surface, or when you want identifiers redacted by default rather than by discipline. Choose getmcpads.com if you want this server's capabilities without running it, or you need analytics and ad platforms in the same conversation.


Read-only, and why it stays that way

There are no write tools, and no environment variable that adds any. Every tool calls a read method of the Data API or the Admin API.

This is not caution for its own sake. A misread report is a wrong answer you can spot. A mistaken write to an analytics property, a deleted audience or an edited data stream, corrupts the record you use to judge everything else, and often silently. The other servers we publish do have write tools, guarded by a mandatory preview. This one has none.

Our ad platform servers with guarded writes: Meta Ads · Google Ads · TikTok Ads


Personal data

Analytics data is not anonymous by default. A GA4 property can carry a userId you set yourself, a device identifier, or a Google Signals pseudonymous ID. An MCP conversation sends whatever a tool returns to a model.

Identifiers are redacted by default wherever this server can return them, and showing them is an explicit opt-in, never the default.

ToolBehaviour
ga4_list_admin_resourcesAccess bindings have user and email identifiers redacted
ga4_query_audience_exportIdentifier columns redacted, matched against the export's own dimension metadata
ga4_get_audience_export_diagnosticsSame redaction on the row sample

Every one of these accepts includePersonalIdentifiers: true to return raw values, and defaults to false.

Audience export rows are positional, so the redaction reads the export's dimension metadata to find identifier columns. If that metadata is missing, every value in the row is redacted rather than guessing which column is safe. Failing closed is the point.

Report rows are not redacted. ga4_run_report and the other reporting tools return what you asked for. Altering the numbers a report returns would be worse than returning them.

So one decision stays yours: if your property carries a userId you consider personal, do not request it as a report dimension in a conversation whose transcript leaves your machine.


Getting credentials

Three values, obtained once.

1. OAuth client

In a Google Cloud project, enable the Google Analytics Data API and the Google Analytics Admin API, then create an OAuth client under APIs & Services → Credentials. Choose Desktop app for local use. Note the client ID and client secret.

2. Refresh token

Run the OAuth consent flow once, signed in as a Google account with access to your GA4 properties, and keep the refresh token. The analytics.readonly scope is enough, and it is the only one you should grant.

📖 Google OAuth for installed apps

The refresh token does not expire. It is the sensitive value: anyone holding it can mint access tokens indefinitely. Use an OAuth client dedicated to this server so you can revoke it on its own.

3. Property ID, optional

Set GA4_PROPERTY_ID to avoid passing it on every call. Find it in GA4 under Admin → Property Settings, or list them with ga4_list_properties.

Run ga4_health_check as your first call. It verifies the credentials and lists the properties you can actually reach, without printing any secret.


Setup

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "google-analytics": {
      "command": "npx",
      "args": ["-y", "@getmcpads/google-analytics-mcp-server"],
      "env": {
        "GA4_CLIENT_ID": "your-client-id",
        "GA4_CLIENT_SECRET": "your-client-secret",
        "GA4_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

Restart Claude Desktop. Ask it: "list my Google Analytics properties".

Claude Code

claude mcp add google-analytics --env GA4_CLIENT_ID=... --env GA4_CLIENT_SECRET=... --env GA4_REFRESH_TOKEN=... -- npx -y @getmcpads/google-analytics-mcp-server

Cursor

.cursor/mcp.json in your project, same shape as the Claude Desktop config above.

From source

git clone https://github.com/getmcpads-com/google-analytics-mcp-server.git
cd google-analytics-mcp-server
npm install && npm run build
cp .env.example .env   # then fill in your credentials
npm start

Configuration

VariableDefaultMeaning
GA4_CLIENT_IDnoneRequired. OAuth client ID
GA4_CLIENT_SECRETnoneRequired. OAuth client secret
GA4_REFRESH_TOKENnoneRequired. From the consent flow
GA4_PROPERTY_IDnoneOptional default, saves passing it on every call
LOG_LEVELinfodebug, info, warn, error

Check your setup at any time:

npm run doctor

Tools

Discovery and health

ToolPurpose
ga4_health_checkValidates credentials and lists reachable properties
ga4_list_accounts / ga4_list_propertiesAccounts and properties you can reach
ga4_get_property_configurationTimezone, currency, industry, data retention
ga4_get_metadataMetrics and dimensions available on a given property

Reporting

ToolPurpose
ga4_run_reportThe main reporting tool. Named metrics and dimensions
ga4_run_pivot_reportPivot tables
ga4_batch_run_reports / ga4_batch_run_pivot_reportsSeveral reports in one call
ga4_run_realtime_reportThe last 30 minutes
ga4_run_advanced_funnel_reportFunnel analysis with step conditions
ga4_run_funnel_recipePrebuilt funnels for common journeys
ga4_validate_query / ga4_check_compatibilityCheck a combination before running it

Configuration

ToolPurpose
ga4_list_admin_resourcesData streams, users, links. Access-binding identifiers redacted
ga4_get_custom_definitionsCustom dimensions and metrics
ga4_get_key_eventsKey events and their counting method
ga4_get_channel_groupsDefault and custom channel groupings
ga4_get_event_parametersParameters actually collected on an event

Audiences

ToolPurpose
ga4_get_audience_diagnosticsAudience definitions and their health
ga4_list_audience_exports / ga4_query_audience_exportAudience exports and their rows
ga4_get_audience_export_diagnosticsWhy an export is empty or stale

Diagnostics

ToolPurpose
ga4_get_ecommerce_diagnosticsWhether ecommerce events are complete and coherent
ga4_get_bigquery_export_diagnosticsBigQuery export configuration and freshness
ga4_get_server_side_tagging_diagnosticsServer-side tagging signals
ga4_get_property_quotas_snapshotRemaining Data API quota tokens
URIContents
ga4://manifestWhat this server exposes, and which tool to run first
ga4://metricsAll 51 metrics with categories and formats
ga4://dimensionsAll 62 dimensions and where they are valid
ga4://compatibilityThe compatibility matrix
ga4://recipes12 step-by-step workflows
ga4://p2-diagnosticsDiagnostic playbooks

Security

  • The client secret and refresh token are never logged, at any log level, or written to disk.
  • Three hosts are contacted, and only three: analyticsdata.googleapis.com, analyticsadmin.googleapis.com and oauth2.googleapis.com. A test fails the build if a fourth host appears in the source.
  • No fetch follows a redirect. Every outbound call sets redirect: "error", so a redirect cannot forward a bearer token or client secret to another host. A test fails the build if any fetch omits this.
  • No telemetry. The server makes no network call other than to Google.

Full policy, including how personal data is handled: SECURITY.md.


Looking for a managed, multi-platform version?

This server does one platform, on your machine, with your credentials. That is on purpose.

If you'd rather not run it yourself, or you need Google Analytics alongside Meta Ads, Google Ads, TikTok Ads, Pinterest Ads and Search Console behind one endpoint, with hosted OAuth and cross-platform reporting, that's what we build at getmcpads.com.

Same philosophy, less plumbing. This project stays open source and independently useful either way.


Contributing

Issues and pull requests are welcome. See CONTRIBUTING.md. Please read SECURITY.md before reporting anything security-related.

Licence

Apache License 2.0. See also NOTICE.

Google, Google Analytics and GA4 are trademarks of Google LLC. This project is not affiliated with, endorsed by, or sponsored by Google LLC. It is an independent client of a public API.

Reviews

No reviews yet

Be the first to review this server!