Skip to main content
Glama
Bizclik-Media

Google Ad Manager MCP

List saved reports

list_reports

Retrieve saved reports in Ad Manager and return each report's resource name needed to run a report. Use this to find the correct report before executing it.

Instructions

List saved reports in Ad Manager. Returns each report's resource name, which is what run_report takes. Use this first to find the report to run.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageSizeNoMaximum reports to return.
networkCodeNoAd Manager network code. Defaults to the configured network.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It usefully discloses that the return includes a resource name that run_report consumes, but says nothing about pagination behavior, result limits (pageSize max 200), or whether listing requires specific permissions. Adequate for a simple read but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, zero filler, with the core action and the downstream dependency front-loaded. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema, and the description compensates by stating what is returned (the resource name) and how it is used next. Pagination behavior is left implicit and not spelled out, keeping it just short of complete for a list tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so pageSize and networkCode are already fully documented in the schema and the baseline is 3. The description adds no syntax or format detail beyond what the schema provides, though it does clarify what the returned resource name is for.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ("List saved reports in Ad Manager") and immediately ties the output to a sibling by naming run_report and the resource name it consumes. An agent can separate this from run_report without opening either schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

"Use this first to find the report to run" gives explicit sequencing relative to run_report, which is the one alternative that matters here. It stops short of naming exclusions or stating what to do when no reports exist, so it is clear context rather than full when/when-not guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.