google_ads_get_auto_applied_recommendations

Check Google Ads Auto-Applied Recommendations

Google

Description

Check which Google Ads recommendation types are set to auto-apply for an account. Auto-applied recommendations can automatically change bids, budgets, keywords, and campaign structure without manual review. Essential for account audits.

Read-onlyIdempotentOpen-world

Usage

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "google_ads_get_auto_applied_recommendations",
    "arguments": {
      "customer_id": "1234567890",
      "reason": "Audit auto-applied recommendation settings"
    }
  }
}
hopkin google auto-applied-recommendations get
FlagTypeRequiredDescription
--customer-idstringRequiredThe Google Ads Customer ID (10 digits, with or without dashes)
--login-customer-idstringOptionalMCC (Manager) Customer ID; required for managed accounts
{
  "mcpServers": {
    "google-ads": {
      "url": "https://mcp.hopkin.ai/google-ads/mcp",
      "transport": "sse"
    }
  }
}
  • Check auto-applied
  • MCC account

Parameters

NameTypeRequiredDescription
customer_id string Required The Google Ads Customer ID (10 digits, with or without dashes)pattern: ^[\d-]+$
reason string Required Why this tool call is neededminLength: 1, maxLength: 500
Optional parameters (1)
NameTypeRequiredDescription
login_customer_id string Optional MCC (Manager) Customer ID; required for managed accountspattern: ^[\d-]+$

Examples

Check auto-applied

{
  "customer_id": "1234567890",
  "reason": "Audit auto-applied recommendation settings"
}

hopkin google auto-applied-recommendations get --customer-id 1234567890

MCC account

{
  "customer_id": "1234567890",
  "login_customer_id": "9876543210",
  "reason": "Check auto-applied for managed account"
}

hopkin google auto-applied-recommendations get --customer-id 1234567890 --login-customer-id 9876543210