# google_ads_create_campaign

> Create a Google Ads campaign. A write tool that previews before it changes anything, one of 38 Google Ads tools on the Get MCP Ads MCP gateway.

[Documentation](https://www.getmcpads.com/docs) / [Sources](https://www.getmcpads.com/docs/sources) / [Google Ads](https://www.getmcpads.com/docs/sources/google-ads)

Create a Google Ads campaign. It is always created PAUSED and there is no option to create it active: someone has to look at it before it spends. Creates the campaign budget too. Previews by default.

> **Warning** This tool changes the account. It is absent from the tool list on the Free plan, and it previews by default: without `confirm: true` it describes the change and applies nothing.

|  |  |
| --- | --- |
| Source | [Google Ads](https://www.getmcpads.com/docs/sources/google-ads) |
| Kind | Write |
| Discovery | Reachable through `search_tools` and `run_tool` |
| Account parameter | `customerId` |
| Endpoint | https://mcp.getmcpads.com/google-ads/mcp |

## Parameters

| Name | Type | Required | Notes |
| --- | --- | --- | --- |
| `customerId` | string | Required | Google Ads customer ID, with or without dashes. |
| `name` | string | Required | Campaign name. |
| `channelType` | string | Required | Advertising channel. One of: `SEARCH`, `DISPLAY`, `SHOPPING`, `VIDEO`, `PERFORMANCE_MAX`. |
| `dailyBudget` | number | Required | Daily budget in the account currency. |
| `loginCustomerId` | string | Optional | Manager account ID, when the customer sits under an MCC. Omit otherwise. |
| `confirm` | boolean | Optional | Set to true to actually apply the change. Without it, the tool only previews. |

## Calling it

Through run_tool, since it is not announced

```json
{
  "name": "run_tool",
  "arguments": {
    "name": "google_ads_create_campaign",
    "args": {
      "customerId": "<string>",
      "name": "<string>",
      "channelType": "SEARCH",
      "dailyBudget": "<number>"
    }
  }
}
```

- [Google Ads metrics](https://www.getmcpads.com/docs/sources/google-ads/metrics): What you can ask for.
- [Google Ads dimensions](https://www.getmcpads.com/docs/sources/google-ads/dimensions): How you can break it down.

---

This page as HTML: https://www.getmcpads.com/docs/sources/google-ads/tools/google_ads_create_campaign
Every page under /docs is available as Markdown: append `.md`, or send `Accept: text/markdown`.
