google_ads_get_landing_page_report
Get Landing Page Performance Report
GoogleDescription
Landing page performance report from the landing_page_view resource. Preferred tool for all landing page analysis — do not use google_ads_get_insights or google_ads_list_ads for landing page data. Returns clicks, impressions, cost, conversions, speed_score, and mobile_friendly_clicks_percentage grouped by landing page URL, with per-conversion-action breakdowns included automatically. Use url_contains to filter by URL pattern. Note: Performance Max campaigns do not appear in landing_page_view data.
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "google_ads_get_landing_page_report",
"arguments": {
"customer_id": "1234567890",
"date_preset": "LAST_30_DAYS",
"reason": "Landing page analysis"
}
}
}
hopkin google landing-page-report get
| Flag | Type | Required | Description |
|---|---|---|---|
--customer-id | string | Required | The Google Ads Customer ID (10 digits, with or without dashes) |
--login-customer-id | string | Optional | MCC (Manager) Customer ID; required for managed accounts |
--date-preset | string | Optional | Predefined date range: TODAY, YESTERDAY, LAST_7_DAYS, LAST_30_DAYS, THIS_MONTH, LAST_MONTH |
--date-range | object | Optional | Custom date range {start_date, end_date} in YYYY-MM-DD |
--segments | array | Optional | Additional segments: date, device, ad_network_type. Conversion breakdowns are always included automatically via a separate query. |
--campaign | string | Optional | Filter to a specific campaign ID |
--ad-group-id | string | Optional | Filter to a specific ad group ID |
--url-contains | string | Optional | Filter landing pages where URL contains this string (case-sensitive) |
--limit | integer | Optional | Maximum number of landing pages to return (default: 100, max: 1000) |
--order-by | string | Optional | Sort results by this metric (default: clicks, descending) |
--include-all-conversions | boolean | Optional | When true, includes an additional all-conversions breakdown (all_conversions, all_conversions_value) segmented by conversion_action_name. |
{
"mcpServers": {
"google-ads": {
"url": "https://google.mcp.hopkin.ai",
"transport": "sse"
}
}
}
- Top landing pages by clicks
- Daily landing page trend
- Landing pages for a campaign
- Filter by URL pattern
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
customer_id |
string |
Required | The Google Ads Customer ID (10 digits, with or without dashes)minLength: 1 |
reason |
string |
Required | Why this tool call is neededminLength: 1, maxLength: 500 |
Optional parameters (10)
| Name | Type | Required | Description |
|---|---|---|---|
login_customer_id |
string |
Optional | MCC (Manager) Customer ID; required for managed accountsminLength: 1 |
date_preset |
string |
Optional | Predefined date range: TODAY, YESTERDAY, LAST_7_DAYS, LAST_30_DAYS, THIS_MONTH, LAST_MONTHTODAY YESTERDAY LAST_7_DAYS LAST_30_DAYS THIS_MONTH LAST_MONTH |
date_range |
object |
Optional | Custom date range {start_date, end_date} in YYYY-MM-DD |
segments |
array |
Optional | Additional segments: date, device, ad_network_type. Conversion breakdowns are always included automatically via a separate query. |
campaign_id |
string |
Optional | Filter to a specific campaign IDminLength: 1 |
ad_group_id |
string |
Optional | Filter to a specific ad group IDminLength: 1 |
url_contains |
string |
Optional | Filter landing pages where URL contains this string (case-sensitive) |
limit |
integer |
Optional | Maximum number of landing pages to return (default: 100, max: 1000)min: 1, max: 1000 |
order_by |
string |
Optional | Sort results by this metric (default: clicks, descending)impressions clicks cost conversions ctr |
include_all_conversions |
boolean |
Optional | When true, includes an additional all-conversions breakdown (all_conversions, all_conversions_value) segmented by conversion_action_name. |
Examples
Top landing pages by clicks
{
"customer_id": "1234567890",
"date_preset": "LAST_30_DAYS",
"reason": "Landing page analysis"
}
hopkin google landing-page-report get --customer-id 1234567890 --date-preset LAST_30_DAYS
Daily landing page trend
{
"customer_id": "1234567890",
"date_preset": "LAST_7_DAYS",
"segments": [
"date"
],
"reason": "Daily landing page trend"
}
hopkin google landing-page-report get --customer-id 1234567890 --date-preset LAST_7_DAYS --segments date
Landing pages for a campaign
{
"customer_id": "1234567890",
"date_preset": "LAST_30_DAYS",
"campaign_id": "9876543210",
"reason": "Campaign landing page review"
}
hopkin google landing-page-report get --customer-id 1234567890 --date-preset LAST_30_DAYS --campaign 9876543210
Filter by URL pattern
{
"customer_id": "1234567890",
"date_preset": "LAST_30_DAYS",
"url_contains": "/products/",
"reason": "Product page performance"
}
hopkin google landing-page-report get --customer-id 1234567890 --date-preset LAST_30_DAYS --url-contains /products/