> ## Documentation Index
> Fetch the complete documentation index at: https://docs.adcue.app/llms.txt
> Use this file to discover all available pages before exploring further.

# suggest_ad_content

> MCP tool reference for suggest_ad_content.

# `suggest_ad_content`

Suggest RSA headlines/descriptions (heuristic or AI).

**Expose:** `router` · **Read-only:** yes · **Destructive:** no · **Advanced:** no

Call via the `google_ads` router with `action=execute` and this `tool_name`.

Runtime truth is the live MCP surface (`list_tools` / `get_tool_schema`). This page is generated from the committed registry export.

## Parameters

| Parameter              | Type   | Required | Description                             |
| ---------------------- | ------ | -------- | --------------------------------------- |
| `business_description` | string | no       | Business description                    |
| `campaign_id`          | string | yes      | Campaign id as string                   |
| `customer_id`          | string | no       | Google Ads customer id as digits string |
| `key_benefits`         | array  | no       | Key benefits                            |
| `pain_points`          | array  | no       | Pain points                             |
| `proof_points`         | array  | no       | Proof points                            |

## Input schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "campaign_id": {
      "type": "string",
      "description": "Campaign id as string"
    },
    "business_description": {
      "type": "string",
      "description": "Business description"
    },
    "customer_id": {
      "type": "string",
      "description": "Google Ads customer id as digits string"
    },
    "key_benefits": {
      "type": "array",
      "description": "Key benefits",
      "items": {
        "type": "string"
      }
    },
    "pain_points": {
      "type": "array",
      "description": "Pain points",
      "items": {
        "type": "string"
      }
    },
    "proof_points": {
      "type": "array",
      "description": "Proof points",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "campaign_id"
  ],
  "additionalProperties": true
}
```

## Related

* [Tool catalog](/mcp/tools)
* [Safety model](/mcp/safety)
* [Tool Reference overview](/tool-reference/overview)
