get_ad_group
Get one ad group by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ad_group_id | Yes |
Get one ad group by id.
| Name | Required | Description | Default |
|---|---|---|---|
| ad_group_id | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. However, the description adds no additional behavioral context beyond the annotated read-only nature; it does not mention rate limits, auth requirements, or what happens if the ID is not found.
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?
The description is a single sentence, front-loaded with the verb and resource, and contains no unnecessary words. Every word earns its place.
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?
Complexity is low (one parameter, get by ID), but without an output schema, the description should clarify what is returned (e.g., the ad group object, null if not found). It does not address edge cases or error handling, leaving the agent with incomplete information.
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%, but the description mentions 'by id', which clarifies that the required parameter 'ad_group_id' is the identifier. This adds some meaning, but does not provide format, constraints, or examples, leaving the agent with minimal guidance.
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?
The description 'Get one ad group by id' uses a specific verb ('Get') and resource ('ad group'), clearly distinguishing it from sibling tools like 'list_ad_groups' which list multiple, and other 'get_' tools by resource name.
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?
The description provides no guidance on when to use this tool versus alternatives. It does not mention that this should be used when a single ad group is needed by ID, nor does it exclude cases where list_ad_groups would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.