delete_testimonial
Delete a testimonial from your portfolio using its ID. Requires write permission.
Instructions
Delete a testimonial by ID. Requires write permission.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Testimonial ID |
Delete a testimonial from your portfolio using its ID. Requires write permission.
Delete a testimonial by ID. Requires write permission.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Testimonial ID |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must disclose behavioral details. It mentions 'Requires write permission' which is useful, but it does not disclose whether deletion is permanent, how the API responds to non-existent IDs, or any side effects. For a destructive operation, this is a significant gap.
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 concise sentence that front-loads the primary action. There is no wasted text, and it is appropriately sized for the tool's simplicity.
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?
Given the tool's simplicity (one parameter, no output schema), the description is still incomplete: it omits any indication of the return value or success/failure behavior, and does not state that deletion is irreversible. An agent calling this tool would benefit from knowing whether it returns the deleted object or a confirmation.
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 fully documents the single 'id' parameter with 100% coverage, so the description need not add parameter details. It repeats 'by ID' but adds no new information beyond the schema.
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 clearly states the verb 'Delete' and the resource 'testimonial', making the operation unambiguous. However, it does not explicitly differentiate from sibling delete tools for other resources, relying on the resource name to disambiguate.
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 like update_testimonial or create_testimonial, nor does it mention any exclusions. It only states a permission requirement, which is a prerequisite but not usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.