google-ads-api-account-diagnostics
Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets
Install / Use
npx skills add google/skills --skill google-ads-api-account-diagnosticsInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
MarketingSupported Platforms
Our assessment of google-ads-api-account-diagnostics
google-ads-api-account-diagnostics scores 93/100 on our quality scale, 38th of 175 Marketing skills we index (top 22%).
Its SKILL.md is 9.7 KB long, well organised into 8 sections with 1 code example: a thorough specification that gives an agent plenty to work with.
With 20,340 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 2 days ago, so google-ads-api-account-diagnostics is actively maintained.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
google-ads-api-account-diagnostics compared with similar skills
All 4 of these similar skills score higher than google-ads-api-account-diagnostics; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| google-ads-api-account-diagnostics (this skill)by google | 93 | 20.3k | 2d ago | SKILL.md |
| Agent-Reachby Panniantong | 100 | 85.4k | 10d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
| Scraplingby D4Vinci | 100 | 83.7k | today | MCP Server |
| LocalAIby mudler | 100 | 49.3k | today | MCP Server |
Frequently asked questions
- How do I install google-ads-api-account-diagnostics?
- Run
npx skills add google/skills --skill google-ads-api-account-diagnostics. The install tabs above show the steps for each supported agent. - Which AI agents does google-ads-api-account-diagnostics work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is google-ads-api-account-diagnostics safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It is Apache-2.0-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is google-ads-api-account-diagnostics still maintained?
- The repository was last updated 2 days ago, so google-ads-api-account-diagnostics is actively maintained.
Skill content
View source on GitHubname: google-ads-api-account-diagnostics description: >- Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets. Use when troubleshooting sudden performance drops, analyzing campaign impression share metrics, investigating low lead flow, or searching for bidding and budget constraints. Don't use for setting up new campaigns, uploading conversion events directly, or general Google Mobile Ads SDK integration issues (use gma-android-integrate instead). metadata: category: GoogleAds author: google-ads-api-team version: "1.0.0"
Google Ads API Account Performance Diagnostics Skill
This skill provides instructions on how to use the Google Ads MCP server tools to diagnose common account performance issues.
Workflows
Identifying Active Client Accounts
Most diagnostics tasks require sending GAQL queries to a specific customer account. If the customer ID is not explicitly provided by the user, you must first call the list_accessible_customers (or customers_list_accessible_customers) tool to retrieve the customer resource names/IDs you have access to.
Once you have the list of accessible customer IDs, query the customer_client resource using the search tool under those customer accounts to find active client customer accounts. Make sure to select only enabled client accounts and filter out manager accounts:
SELECT
customer_client.id,
customer_client.descriptive_name,
customer_client.status,
customer_client.manager
FROM customer_client
WHERE customer_client.status = 'ENABLED' AND customer_client.manager = FALSE
Only run subsequent diagnostic queries against the enabled client customer IDs retrieved from this list. Do not query deactivated or manager accounts, as doing so will cause API errors.
Using the MCP Tools Directly
To retrieve information and run queries, you must call the search tool on the MCP server directly (with arguments like customer_id, fields, resource, and conditions). Do not write or execute custom Python scripts or use the Google Ads client library to query the API, as they will fail authentication inside the evaluation sandbox.
1. Conversion and Conversion Value Loss
When conversions or conversion value suddenly decline, use the following steps to diagnose the issue.
Steps:
-
Discover Fields: Use
get_resource_metadatawith resourcecampaignorad_groupto ensure you have the correct field names. -
Query Performance: Use
searchto retrieve performance data.- Resource:
campaignorad_group - Fields: Include
campaign.name,metrics.conversions,metrics.conversions_value,metrics.cost_micros. - Segments: To isolate the loss, include segments like
segments.date,segments.device,segments.conversion_action. - Conditions: Compare the period of decline with a previous period (e.g.,
segments.date >= '{start_date}'). - Gotcha:
metrics.cost_microsmust be divided by 1,000,000 to get standard currency amounts.
Example GAQL Query: To query performance data for a customer account
{customer_id}between{start_date}and{end_date}:SELECT campaign.name, metrics.conversions, metrics.conversions_value, metrics.cost_micros, segments.date, segments.device, segments.conversion_action FROM campaign WHERE segments.date >= '{start_date}' AND segments.date <= '{end_date}' - Resource:
-
Analyze: Check if the loss is limited to certain devices (e.g., mobile vs desktop) or specific conversion actions.
-
Check Uploads: If using offline imports, query
offline_conversion_upload_conversion_action_summaryto verify upload pipeline health. If the query returns no results, report that no offline uploads exist for the account and proceed.Example GAQL Query: To check upload pipeline health for a customer account
{customer_id}:SELECT offline_conversion_upload_conversion_action_summary.conversion_action_name, offline_conversion_upload_conversion_action_summary.successful_event_count, offline_conversion_upload_conversion_action_summary.total_event_count, offline_conversion_upload_conversion_action_summary.status FROM offline_conversion_upload_conversion_action_summary
2. Opportunities Lost (Impression Share)
To identify lost opportunities due to ad rank, bids, or budgets, analyze impression share metrics.
Steps:
-
Query Impression Share: Use
searchto retrieve impression share metrics.- Resource:
campaign - Fields: Include
campaign.name,metrics.search_impression_share,metrics.search_rank_lost_impression_share,metrics.search_budget_lost_impression_share. - Gotcha: Impression share values in the API are returned as decimals (e.g., 0.35 = 35%) or formatted strings (e.g.,
"< 0.10").
Example GAQL Query: To query impression share metrics for a customer account
{customer_id}between{start_date}and{end_date}:SELECT campaign.name, metrics.search_impression_share, metrics.search_rank_lost_impression_share, metrics.search_budget_lost_impression_share FROM campaign WHERE segments.date >= '{start_date}' AND segments.date <= '{end_date}' - Resource:
-
Analyze:
- High
search_budget_lost_impression_shareindicates opportunities lost due to limited budget. - High
search_rank_lost_impression_shareindicates opportunities lost due to low ad rank (bid or quality issues).
- High
3. Low Lead Flow Diagnostics
When a user asks "why is my lead flow low these past few days?", follow this systematic approach.
Steps:
-
Confirm Drop: Query conversions segmented by date for the last few days vs the previous period.
-
Isolate Cause:
- Check if Traffic (clicks, impressions) dropped.
- Check if Conversion Rate (conversions/clicks) dropped.
-
If Traffic Dropped: Check Impression Share metrics (see Workflow 2) to see if it's a budget or rank issue, or if search volume generally declined.
-
If Conversion Rate Dropped: Check breakdowns by
segments.deviceorsegments.conversion_actionto see if a specific area is failing. -
Check Changes: Query the
change_eventresource to see if any changes were made to bids, budgets, or targeting around the time the drop started.- Gotcha (change_event constraints): Queries to the
change_eventresource:- Must specify a
LIMITclause of less than or equal to 10000. - Must filter by date (
change_event.change_date_time) within the past 30 days. - Cannot select performance metrics (e.g.,
metrics.*is not supported; onlychange_eventattributes and allowed resource fields can be selected).
- Must specify a
Example GAQL Query: To query change events for a customer account
{customer_id}between{start_date}and{end_date}:SELECT change_event.change_date_time, change_event.change_resource_name, change_event.resource_change_operation, change_event.changed_fields FROM change_event WHERE change_event.change_date_time >= '{start_date}' AND change_event.change_date_time <= '{end_date}' LIMIT 10000 - Gotcha (change_event constraints): Queries to the
4. Offline Upload Pipeline Diagnostics
When offline conversion uploads for a specific action (e.g., store-purchase) stop showing up or fail, use the following steps to diagnose the issue.
Steps:
-
Retrieve Client Accounts: If
{customer_id}is not provided, first call thelist_accessible_customers(orcustomers_list_accessible_customers) tool to retrieve the customer resource names/IDs you have access to. Then, query thecustomer_clientresource to find active client customer accounts, ensuring you filter out manager accounts and deactivated/canceled accounts to avoid query errors.Example GAQL Query:
SELECT customer_client.id, customer_client.descriptive_name, customer_client.status, customer_client.manager FROM customer_client WHERE customer_client.status = 'ENABLED' AND customer_client.manager = FALSE -
Verify Pipeline Health: Query
offline_conversion_upload_conversion_action_summaryfor the active client account.- Fields: Include
offline_conversion_upload_conversion_action_summary.conversion_action_name,offline_conversion_upload_conversion_action_summary.successful_event_count,offline_conversion_upload_conversion_action_summary.total_event_count, andoffline_conversion_upload_conversion_action_summary.status.
Example GAQL Query:
SELECT offline_conversion_upload_conversion_action_summary.conversion_action_name, offline_conversion_upload_conversion_action_summary.successful_event_count, offline_conversion_upload_conversion_action_summary.total_event_count, offline_conversion_upload_conversion_action_summary.status FROM offline_conversion_upload_conversion_action_summary - Fields: Include
-
Analyze:
- Gotcha: If the query to
offline_conversion_upload_conversion_action_summaryreturns no results or is empty (indicating there are no offline conversion uploads configured or active for the customer account), immediately stop/break the diagnostic workflow. Report directly to the user that no offline conversion upload data or summaries exist in the accessible account(s), rather than retrying or attempting to generate custom scripts. - If results are returned, verify the upload success rate by comparing
successful_event_countwithtotal_event_count. Check thestatusfield to diagnose failures.
- Gotcha: If the query to
Related Skills
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
Scrapling
83.7k🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
LocalAI
49.3kLocalAI is the open-source AI engine. Run any model - LLMs, vision, voice, image, video - on any hardware. No GPU required.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
