Google Analytics MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add -e "GOOGLE_APPLICATION_CREDENTIALS=${GOOGLE_APPLICATION_CREDENTIALS}" google-analytics -- pipx install analytics-mcp
Required:GOOGLE_APPLICATION_CREDENTIALS
README.md

Interact with Google Analytics Admin and Data APIs via natural language.

Google Analytics MCP Server (Experimental)

This repo contains the source code for running a local MCP server that interacts with APIs for Google Analytics.

Join the discussion and ask questions in the šŸ¤–-analytics-mcp channel on Discord.

Tools šŸ› ļø

The server uses the Google Analytics Admin API and Google Analytics Data API 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.
  • 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 on YouTube for a step-by-step walkthrough of these instructions.

Setup involves the following steps:

  1. Configure Python.
  2. Configure credentials for Google Analytics.
  3. Configure Gemini.

Configure Python šŸ

Install pipx.

Enable APIs in your project āœ…

Follow the instructions to enable the following APIs in your Google Cloud project:

Configure credentials šŸ”‘

Configure your Application Default 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 Manage OAuth Clients 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

  1. Install Gemini CLI or Gemini Code Assist.

  2. Create or edit the file at ~/.gemini/settings.json, addin

Tools (6)

get_account_summariesRetrieves information about the user's Google Analytics accounts and properties.
get_property_detailsReturns details about a property.
list_google_ads_linksReturns a list of links to Google Ads accounts for a property.
run_reportRuns a Google Analytics report using the Data API.
get_custom_dimensions_and_metricsRetrieves the custom dimensions and metrics for a specific property.
run_realtime_reportRuns a Google Analytics realtime report using the Data API.

Environment Variables

GOOGLE_APPLICATION_CREDENTIALSrequiredPath to the JSON file containing your Google Cloud service account or OAuth credentials.

Configuration

claude_desktop_config.json
{"mcpServers": {"google-analytics": {"command": "uvx", "args": ["analytics-mcp"], "env": {"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/your/credentials.json"}}}}

Try it

→List all my Google Analytics accounts and their associated properties.
→Run a report for property ID 123456789 showing active users and sessions for the last 30 days.
→What are the current real-time active users on my website?
→Get the custom dimensions and metrics configured for my primary property.
→Show me the Google Ads links associated with my property.

Frequently Asked Questions

What are the key features of Google Analytics?

Retrieve account summaries and property details. Execute core Google Analytics Data API reports. Fetch real-time website performance data. List Google Ads account links for properties. Access custom dimensions and metrics definitions.

What can I use Google Analytics for?

Quickly querying website traffic metrics without navigating the Google Analytics dashboard.. Automating the generation of performance reports for specific properties.. Checking real-time visitor activity during marketing campaigns.. Auditing property configurations and custom metric setups..

How do I install Google Analytics?

Install Google Analytics by running: pipx install analytics-mcp

What MCP clients work with Google Analytics?

Google Analytics works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Google Analytics docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare