google_ads_get_conversion_actions
List Google Ads Conversion Actions
GoogleDescription
List conversion actions configured for a Google Ads account. Use this to understand which conversions are tracked before querying performance reports or insights with conversion segments.
Read-onlyIdempotentOpen-world
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "google_ads_get_conversion_actions",
"arguments": {
"customer_id": "1234567890",
"reason": "See configured conversion actions"
}
}
}
hopkin google conversion-actions 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 |
--status | string | Optional | Filter by status (default: returns all non-REMOVED). ENABLED, REMOVED, HIDDEN |
--limit | number | Optional | Maximum number of conversion actions to return (default: 100, max: 500) |
{
"mcpServers": {
"google-ads": {
"url": "https://mcp.hopkin.ai/google-ads/mcp",
"transport": "sse"
}
}
}
- List all
- Enabled only
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 (3)
| Name | Type | Required | Description |
|---|---|---|---|
login_customer_id |
string |
Optional | MCC (Manager) Customer ID; required for managed accountsminLength: 1 |
status |
string |
Optional | Filter by status (default: returns all non-REMOVED). ENABLED, REMOVED, HIDDENENABLED REMOVED HIDDEN |
limit |
number |
Optional | Maximum number of conversion actions to return (default: 100, max: 500)min: 1, max: 500 |
Examples
List all
{
"customer_id": "1234567890",
"reason": "See configured conversion actions"
}
hopkin google conversion-actions get --customer-id 1234567890
Enabled only
{
"customer_id": "1234567890",
"status": "ENABLED",
"reason": "Active conversion actions"
}
hopkin google conversion-actions get --customer-id 1234567890 --status ENABLED