google_ads_list_mcc_child_accounts

List MCC Child Accounts

Google

Description

List child accounts under a specific MCC (Manager) account. When calling other tools for these child accounts, you MUST pass login_customer_id with the MCC Customer ID. For all accessible accounts regardless of hierarchy, use google_ads_list_accounts instead.

Read-onlyIdempotentOpen-world

Usage

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "google_ads_list_mcc_child_accounts",
    "arguments": {
      "mcc_id": "1234567890",
      "reason": "List MCC child accounts"
    }
  }
}
hopkin google mcc-child-accounts list
FlagTypeRequiredDescription
--mcc-idstringRequiredThe MCC (Manager) Customer ID whose child accounts to list (10 digits, dashes accepted)
--searchstringOptionalSearch child accounts by name or customer ID (case-insensitive partial match)
--limitintegerOptionalNumber of accounts per page (default: 20, max: 100)
--cursorstringOptionalPagination cursor from previous response
{
  "mcpServers": {
    "google-ads": {
      "url": "https://mcp.hopkin.ai/google-ads/mcp",
      "transport": "sse"
    }
  }
}
  • List children
  • Search children

Parameters

NameTypeRequiredDescription
mcc_id string Required The MCC (Manager) Customer ID whose child accounts to list (10 digits, dashes accepted)pattern: ^[\d-]+$
reason string Required Why this tool call is neededminLength: 1, maxLength: 500
Optional parameters (3)
NameTypeRequiredDescription
search string Optional Search child accounts by name or customer ID (case-insensitive partial match)minLength: 1
limit integer Optional Number of accounts per page (default: 20, max: 100)min: 1, max: 100
cursor string Optional Pagination cursor from previous responseminLength: 1

Examples

List children

{
  "mcc_id": "1234567890",
  "reason": "List MCC child accounts"
}

hopkin google mcc-child-accounts list --mcc-id 1234567890

Search children

{
  "mcc_id": "1234567890",
  "search": "marketing",
  "reason": "Find child accounts"
}

hopkin google mcc-child-accounts list --mcc-id 1234567890 --search marketing