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

# analyze_wasted_spend

> MCP tool reference for analyze_wasted_spend.

# `analyze_wasted_spend`

Identify wasted spend opportunities.

**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                             |
| ------------- | ------- | -------- | --------------------------------------- |
| `customer_id` | string  | no       | Google Ads customer id as digits string |
| `end_date`    | string  | no       | YYYY-MM-DD                              |
| `raw_data`    | boolean | no       | Include raw rows                        |
| `start_date`  | string  | no       | YYYY-MM-DD                              |
| `target_roas` | number  | no       | Target ROAS                             |

## Input schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "customer_id": {
      "type": "string",
      "description": "Google Ads customer id as digits string"
    },
    "start_date": {
      "type": "string",
      "description": "YYYY-MM-DD"
    },
    "end_date": {
      "type": "string",
      "description": "YYYY-MM-DD"
    },
    "target_roas": {
      "type": "number",
      "description": "Target ROAS"
    },
    "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)
