Active sponsored placements on a page
placements_activeThe Sponsored slot's contents for a page (home | region | leaf); labelled as sponsored in the answer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| leaf | No | ||
| page | Yes | ||
| region | No |
placements_activeThe Sponsored slot's contents for a page (home | region | leaf); labelled as sponsored in the answer.
| Name | Required | Description | Default |
|---|---|---|---|
| leaf | No | ||
| page | Yes | ||
| region | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, and it discloses very little. "Labelled as sponsored in the answer" is a useful output-transparency cue (the response flags sponsored content), but nothing is said about read-only vs mutating nature, permissions, caching/freshness, or what 'active' means.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence with no padding. The parenthetical enum inline is compact, though the phrasing ("The Sponsored slot's contents") is slightly oblique as an opener.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no annotations, no output schema, and three parameters at 0% schema coverage, the description should explain return shape, what makes a placement 'active', and how region/leaf interact with page. None of that is present, so an agent cannot call it confidently beyond the simplest home case.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It restates the `page` enum values (already in the schema) and implies region/leaf are used with those page types, but never explains what `region` or `leaf` should contain or their length limits, leaving the remaining parameters undocumented in both places.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Names the resource (the Sponsored slot's contents for a page) and its scope (home | region | leaf), so an agent knows it fetches sponsored placements rather than doing anything else. The verb is only implied ("contents"), but the resource and scope are specific enough to distinguish it from any sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no statement of when to reach for this tool versus alternatives, nor any prerequisite (auth, sponsor-account requirement, freshness). The parenthetical enum hints at input shape but not at invocation context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.