Mcp Ga4 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Ga4 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for Google Analytics 4 -- run reports, realtime data, custom dimensions, and property management via Claude.
npm install mcp-ga4Or clone the repository:
git clone https://github.com/mharnett/mcp-ga4.git
cd mcp-ga4
npm install
npm run buildSecurity: Never share your .mcp.json file or commit it to git -- it may contain API credentials. Add .mcp.json to your .gitignore.
Set environment variables to connect to a single GA4 property:
GA4_PROPERTY_ID=123456789
GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.jsonCreate a config.json in the project root to map multiple GA4 properties to project directories. The server auto-detects which property to use based on the caller's working directory.
{
"credentials_file": "/path/to/oauth-credentials.json",
"clients": {
"client-a": {
"name": "Client A",
"folder": "/path/to/client-a/project",
"property_id": "123456789"
},
"client-b": {
"name": "Client B",
"folder": "/path/to/client-b/project",
"property_id": "987654321"
}
}
}Single-property mode:
{
"mcpServers": {
"ga4": {
"command": "npx",
"args": ["mcp-ga4"],
"env": {
"GA4_PROPERTY_ID": "123456789",
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json"
}
}
}
}Multi-client mode:
{
"mcpServers": {
"ga4": {
"command": "node",
"args": ["/path/to/mcp-ga4/dist/index.js"]
}
}
}Claude Desktop: Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).
Top pages: dimensions=pagePath, metrics=screenPageViews, order_by=screenPageViews
Traffic sources: dimensions=sessionSource,sessionMedium, metrics=sessions,totalUsers
Daily trend: dimensions=date, metrics=sessions,totalUsers
Campaign performance: dimensions=sessionCampaignName, metrics=sessions,conversions
Device breakdown: dimensions=deviceCategory, metrics=sessions,totalUsers
| Tool | Description |
|---|---|
ga4_get_client_context | Returns the active GA4 property ID and client name |
ga4_run_report | Run a standard GA4 report with dimensions, metrics, date range, and filters |
ga4_realtime_report | Query realtime data (last 30 minutes) |
ga4_list_custom_dimensions | List all custom dimensions for the property |
ga4_create_custom_dimension | Create a new custom dimension |
ga4_list_custom_metrics | List all custom metrics for the property |
ga4_list_data_streams | List web/app data streams and their measurement IDs |
ga4_send_feedback | Submit feedback on a query result |
ga4_suggest_improvement | Suggest a new query pattern or improvement |
Use YYYY-MM-DD for absolute dates, or these relative shortcuts:
todayyesterday7daysAgo30daysAgo90daysAgoDimensions: date, dateHour, eventName, pagePath, pageTitle, sessionSource, sessionMedium, sessionCampaignName, country, city, deviceCategory, browser, operatingSystem, landingPage, pageReferrer, newVsReturning, firstUserSource, firstUserMedium, firstUserCampaignName
Metrics: sessions, totalUsers, newUsers, activeUsers, screenPageViews, eventCount, conversions, engagedSessions, engagementRate, averageSessionDuration, bounceRate, sessionsPerUser, screenPageViewsPerSession, userEngagementDuration
Built on:
@google-analytics/data -- GA4 Data API for reports@google-analytics/admin -- GA4 Admin API for property managementcockatiel -- resilience (retry, circuit breaker)pino -- structured loggingMIT
Built by Mark Harnett / drak-marketing
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.