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

# google_ads

> MCP tool reference for google_ads.

# `google_ads`

Router for Google Ads tools. action=list\_tools | execute with tool\_name and arguments.

**Expose:** `top` · **Read-only:** no · **Destructive:** no · **Advanced:** no

Call this tool by name at the MCP top level.

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

## Safety notes

* Creates and many writes land **PAUSED** where the product applies that rule. Prefer human approval before enabling spend.

## Parameters

| Parameter   | Type   | Required | Description                   |
| ----------- | ------ | -------- | ----------------------------- |
| `action`    | string | yes      | list\_tools or execute        |
| `arguments` | object | no       | Arguments for the routed tool |
| `tool_name` | string | no       | Required when action=execute  |

## Input schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "list_tools",
        "execute"
      ],
      "description": "list_tools or execute"
    },
    "tool_name": {
      "type": "string",
      "description": "Required when action=execute"
    },
    "arguments": {
      "type": "object",
      "description": "Arguments for the routed tool",
      "additionalProperties": true
    }
  },
  "required": [
    "action"
  ],
  "additionalProperties": true
}
```

## Related

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