> ## 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.

# get_campaign_performance

> MCP tool reference for get_campaign_performance.

# `get_campaign_performance`

Google Ads campaign performance metrics (top-level, not via router).

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

Available both top-level and via the `google_ads` router (`action=execute`).

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                             |
| --------------- | ------- | -------- | --------------------------------------- |
| `customer_id`   | string  | no       | Google Ads customer id as digits string |
| `date_range`    | string  | no       | Named range e.g. LAST\_7\_DAYS          |
| `end_date`      | string  | no       | YYYY-MM-DD                              |
| `lookback_days` | integer | no       | Lookback window in days                 |
| `raw_data`      | boolean | no       | Include raw rows                        |
| `start_date`    | string  | no       | YYYY-MM-DD                              |

## Input schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "customer_id": {
      "type": "string",
      "description": "Google Ads customer id as digits string"
    },
    "date_range": {
      "type": "string",
      "description": "Named range e.g. LAST_7_DAYS"
    },
    "start_date": {
      "type": "string",
      "description": "YYYY-MM-DD"
    },
    "end_date": {
      "type": "string",
      "description": "YYYY-MM-DD"
    },
    "lookback_days": {
      "type": "integer",
      "description": "Lookback window in days"
    },
    "raw_data": {
      "type": "boolean",
      "description": "Include raw rows"
    }
  },
  "required": [],
  "additionalProperties": true
}
```

## Related

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