Skip to main content
Glama
scalably-io

google-ads-mcp

by scalably-io

google_ads_change_status

Read-only

Get last-modified timestamps for Google Ads resources to identify changes within up to 14 days.

Instructions

Lightweight change tracker: last-modified-at timestamps for resources.

Unlike change_event, this is a per-resource "last modified" view rather than a change-diff log. Covers up to 14 days.

Args: customer_id: 10-digit customer_id. days_back: 1–14. resource_types: optional filter by change_status.resource_type enum. limit: max rows.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
days_backNo
customer_idYes
resource_typesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true and openWorldHint=true, covering safety and world-openness. The description adds useful behavioral context beyond that: the tool is 'lightweight,' returns per-resource last-modified timestamps, and is limited to a 14-day window. These operational characteristics are not visible in the annotations and help an agent set expectations.

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?

The description is tightly written: a one-sentence summary, a clarifying comparison to change_event, and a short parameter list. Every line contributes value, and the structure front-loads the core purpose before diving into details.

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

Completeness5/5

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

For a read-only tool with an output schema, the description covers everything needed to call it correctly: purpose, key behavioral traits, the 14-day limitation, and all four parameters with constraints. The sibling contrast addresses the main alternative. No significant gaps remain.

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

Parameters5/5

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

Schema description coverage is 0%, so the description carries the full burden of parameter documentation, and it succeeds. Each parameter gets a concise semantic: customer_id is a 10-digit identifier, days_back has a 1–14 range, resource_types is an optional enum filter, and limit caps row count. This meaningfully compensates for the bare schema and enables correct argument construction.

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?

The description clearly states the tool's function with a specific verb and resource: 'Lightweight change tracker: last-modified-at timestamps for resources.' It explicitly differentiates itself from change_event by describing itself as a per-resource 'last modified' view rather than a change-diff log, making it immediately distinguishable from its closest sibling.

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?

The description names the sibling tool change_event and draws a direct contrast: 'Unlike change_event, this is a per-resource last modified view rather than a change-diff log.' This strongly implies when to use this tool versus the alternative, and the 'covers up to 14 days' note sets clear scope boundaries. It stops short of explicitly stating 'use change_event for change-diff logs,' but the implication is clear enough.

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