delete_macro
Remove a Zendesk macro by its ID to clean up unused or outdated macros. Specify the macro ID to delete it permanently.
Instructions
Delete a macro
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Macro ID to delete |
Remove a Zendesk macro by its ID to clean up unused or outdated macros. Specify the macro ID to delete it permanently.
Delete a macro
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Macro ID to delete |
Changes observed during successful MCP inspections.
v1.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true, readOnlyHint=false, and idempotentHint=true. The description only restates the delete action and adds no new behavioral context such as permanence, cascading effects, required permissions, or the result of attempting to delete a non-existent macro.
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 one short, front-loaded sentence with zero filler. It is appropriately concise, though it sacrifices useful detail.
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?
For a simple single-parameter delete operation, the annotations and schema provide adequate safety and parameter context. The description is minimal but not incomplete enough to prevent calling the tool; however, it lacks side-effect information that would be valuable for a destructive action.
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?
The input schema has 100% coverage with a clear description for the required 'id' parameter ('Macro ID to delete'). The description adds no additional parameter semantics, so the baseline of 3 applies.
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 'Delete a macro' uses a specific verb and resource, making the action unmistakable. It doesn't add detail to differentiate from sibling delete tools, but the target resource is named clearly enough for selection.
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?
No guidance is provided about when to use this tool versus alternatives like update_macro or delete_ticket. There are no prerequisites, exclusions, or contextual hints beyond the implied intent of the operation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.