Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due t
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-google-ads-api-account-diagnostics-1cfa8db05062 ,按照其中的说明把「google-ads-api-account-diagnostics」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
This skill provides instructions on how to use the Google Ads MCP server tools to diagnose common account performance issues.
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.
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.
When conversions or conversion value suddenly decline, use the following steps to diagnose the issue.
Steps:
Discover Fields: Use get_resource_metadata with resource campaign or ad_group to ensure you have the correct field names.
Query Performance: Use search to retrieve performance data.
campaign or ad_groupcampaign.name, metrics.conversions, metrics.conversions_value, metrics.cost_micros.segments.date, segments.device, segments.conversion_action.segments.date >= '{start_date}').metrics.cost_micros must 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}'
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_summary to 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
To identify lost opportunities due to ad rank, bids, or budgets, analyze impression share metrics.
Steps:
Query Impression Share: Use search to retrieve impression share metrics.
campaigncampaign.name, metrics.search_impression_share, metrics.search_rank_lost_impression_share, metrics.search_budget_lost_impression_share."< 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}'
Analyze:
search_budget_lost_impression_share indicates opportunities lost due to limited budget.search_rank_lost_impression_share indicates opportunities lost due to low ad rank (bid or quality issues).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:
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.device or segments.conversion_action to see if a specific area is failing.
Check Changes: Query the change_event resource to see if any changes were made to bids, budgets, or targeting around the time the drop started.
change_event resource:
LIMIT clause of less than or equal to 10000.change_event.change_date_time) within the past 30 days.metrics.* is not supported; only change_event attributes and allowed resource fields can be selected).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
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 the list_accessible_customers (or customers_list_accessible_customers) tool to retrieve the customer resource names/IDs you have access to. Then, query the customer_client resource 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_summary for the active client account.
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, and offline_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
Analyze:
offline_conversion_upload_conversion_action_summary returns 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.successful_event_count with total_event_count. Check the status field to diagnose failures.