Discover / Marketing
Google Analytics MCP
by googleanalyticsPython
Google's official MCP server for GA4. Query traffic, conversions and audience reports from an agent.
Maturity: experimental because latest release 0.7.0 is pre 1.0. Derived from release and commit history, not a rating.
- Stars
- 2.9k
- Forks
- 624
- Downloads / mo
- —
- Last commit
- 2026-07-29
- License
- Apache-2.0
- Open issues
- 24
Market and trust evidence
Edition not yet matchedNo exact skills.sh identity match is available for this repository. Repository adoption and freshness remain visible above; install momentum is not inferred.
Trust analysis is a screening signal, not a security warranty. Read the ranking and trust methodology.
In practice
Written by AI from this repository’s README · high confidenceExposes Google Analytics reporting and account details to LLMs using the Model Context Protocol.
Use it when
Use when building AI agents that need to query Google Analytics data directly.
Not the right pick when
Not for client-side tracking or traditional analytics dashboards.
Capabilities
- Retrieve account summaries
- Run core reports
- Run funnel reports
- Run realtime reports
Requirements
- Python 3.10+
- Google Analytics read-only scope
- Gemini CLI or Claude Code
Cost: Needs a paid API or account
Install
Derived from the published package name in the repository, not from a model.
Video walkthroughs
Introducing the Google Analytics MCP Server
How I Built a Google Analytics MCP Server (No Dev Skills Needed)
Third-party YouTube uploads matched to this tool by title, channel and repository name on 2026-08-03. Not made, reviewed or endorsed by SkillPilot. View counts and publish months are as of the match date and the month is approximate. Nothing loads from YouTube until you press play.
What the repository ships
Detected from the actual files in the repository root.
Latest release 0.7.0
Published 2026-07-29
What's Changed
- fix(deps): update dependency google-analytics-data to v0.23.0 by @renovate-bot in https://github.com/googleanalytics/google-analytics-mcp/pull/176
- fix(deps): update dependency google-analytics-admin to v0.30.0 by @renovate-bot in https://github.com/googleanalytics/google-analytics-mcp/pull/175
- chore(deps): group Analytics updates from Renovate by @jradcliff in https://github.com/googleanalytics/google-analytics-mcp/pull/177
- Add Google Analytics MCP section for Claude Code by @eblaauw in https://github.com/googleanalytics/google-analytics-mcp/pull/174
- build: fix zizmor findings by @jradcliff in https://github.com/googleanalytics/google-analytics-mcp/pull/183
- chore(deps): update actions/checkout action to v7 by @renovate-bot in https://github.com/googleanalytics/google-analytics-mcp/pull/181
- fix(deps): update dependency google-analytics-admin to v0.30.1 by @renovate-bot in https://github.com/googleanalytics/google-analytics-mcp/pull/188
- chore(deps): update actions/setup-python action to v7 by @renovate-bot in https://github.com/googleanalytics/google-analytics-mcp/pull/194
- chore(deps): update actions/checkout digest to 3d3c42e by @renovate-bot in https://github.com/googleanalytics/google-analytics-mcp/pull/193
- fix(deps): add upper bound to 'mcp' dependency by @jradcliff in https://github.com/googleanalytics/google-analytics-mcp/pull/200
- v0.7.0 by @matt-landers in https://github.com/googleanalytics/google-analytics-mcp/pull/202
New Contributors
- @eblaauw made their first contribution in https://github.com/googleanalytics/google-analytics-mcp/pull/174
Full Changelog: https://github.com/googleanalytics/google-analytics-mcp/compare/0.6.0...0.7.0
Tags
README
Google Analytics MCP Server (Experimental)
This repo contains the source code for running a local
MCP server that interacts with APIs for
Join the discussion and ask questions in the
on Discord.
Tools 🛠️
The server uses the
and
to provide several
Tools for use with LLMs.
Retrieve account and property information 🟠
get_account_summaries: Retrieves information about the user's Google
Analytics accounts and properties.
get_property_details: Returns details about a property.list_google_ads_links: Returns a list of links to Google Ads accounts for
a property.
Run core reports 📙
run_report: Runs a Google Analytics report using the Data API.run_funnel_report: Runs a Google Analytics funnel report using the Data API.get_custom_dimensions_and_metrics: Retrieves the custom dimensions and
metrics for a specific property.
Run realtime reports ⏳
run_realtime_report: Runs a Google Analytics realtime report using the
Data API.
Setup instructions 🔧
✨ Watch the [Google Analytics MCP Setup
Tutorial](https://youtu.be/nS8HLdwmVlY) on YouTube for a step-by-step
walkthrough of these instructions.
Setup involves the following steps:
- Configure Python.
- Configure credentials for Google Analytics.
- Configure Gemini.
Configure Python 🐍
Enable APIs in your project ✅
to enable the following APIs in your Google Cloud project:
Configure credentials 🔑
Configure your [Application Default Credentials
(ADC)](https://cloud.google.com/docs/authentication/provide-credentials-adc).
Make sure the credentials are for a user with access to your Google Analytics
accounts or properties.
Credentials must include the Google Analytics read-only scope:
https://www.googleapis.com/auth/analytics.readonly
Check out
for how to create an OAuth client.
Here are some sample gcloud commands you might find useful:
- Set up ADC using user credentials and an OAuth desktop or web client after
downloading the client JSON to YOUR_CLIENT_JSON_FILE.
gcloud auth application-default login \
--scopes https://www.googleapis.com/auth/analytics.readonly,https://www.googleapis.com/auth/cloud-platform \
--client-id-file=YOUR_CLIENT_JSON_FILE
- Set up ADC using service account impersonation.
gcloud auth application-default login \
--impersonate-service-account=SERVICE_ACCOUNT_EMAIL \
--scopes=https://www.googleapis.com/auth/analytics.readonly,https://www.googleapis.com/auth/cloud-platform
When the gcloud auth application-default command completes, copy the
PATH_TO_CREDENTIALS_JSON file location printed to the console in the
following message. You'll need this for the next step!
Credentials saved to file: [PATH_TO_CREDENTIALS_JSON]
Configure Gemini
- Install [Gemini
CLI](https://github.com/google-gemini/gemini-cli/blob/main/docs/get-started/installation.md)
or [Gemini Code
Assist](https://marketplace.visualstudio.com/items?itemName=Google.geminicodeassist).
- Create or edit the file at
~/.gemini/settings.json, adding your server
to the mcpServers list.
Replace PATH_TO_CREDENTIALS_JSON with the path you copied in the previous
step.
We also recommend that you add a GOOGLE_CLOUD_PROJECT attribute to the
env object. Replace YOUR_PROJECT_ID in the following example with the
project ID of your
Google Cloud project.
{
"mcpServers": {
"analytics-mcp": {
"command": "pipx",
"args": ["run", "analytics-mcp"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "PATH_TO_CREDENTIALS_JSON",
"GOOGLE_PROJECT_ID": "YOUR_PROJECT_ID"
}
}
}
}
Configure Claude Code
- Add the MCP server with the following command:
Replace PATH_TO_CREDENTIALS_JSON with the path you copied in the previous
step, and replace YOUR_PROJECT_ID with the
project ID of your
Google Cloud project.
claude mcp add analytics-mcp \
--scope user \
-e "GOOGLE_APPLICATION_CREDENTIALS=PATH_TO_CREDENTIALS_JSON" \
-e "GOOGLE_PROJECT_ID=YOUR_PROJECT_ID" \
-- pipx run analytics-mcp
Try it out 🥼
Launch Gemini Code Assist or Gemini CLI and type /mcp. You should see
analytics-mcp listed in the results.
Here are some sample prompts to get you started:
- Ask what the server can do:
what can the analytics-mcp server do?
- Ask about a Google Analytics property
Give me details about my Google Analytics property with 'xyz' in the name
- Prompt for analysis:
what are the most popular events in my Google Analytics property in the last 180 days?
- Ask about signed-in users:
were most of my users in the last 6 months logged in?
- Ask about property configuration:
what are the custom dimensions and custom metrics in my property?
Contributing ✨
Contributions welcome! See the Contributing Guide.