Delete an asset
delete_assetPermanently deletes an asset. DESTRUCTIVE — confirm with the user first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset_id | Yes |
delete_assetPermanently deletes an asset. DESTRUCTIVE — confirm with the user first.
| Name | Required | Description | Default |
|---|---|---|---|
| asset_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=false and destructiveHint=true. The description adds the important behavioral detail that deletion is permanent and that user confirmation is required, which goes beyond the annotation flags.
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 with the core action front-loaded and the critical warning appended. Every word earns its place; there is no redundancy.
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 destructive tool with one parameter and no output schema, the description covers its purpose, permanence, and user-confirmation requirement. It is sufficient for correct invocation, though it could mention error cases or asset-not-found behavior.
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%, and the description does not explain what asset_id specifically refers to or how to obtain it. The word 'asset' provides minimal context but does not compensate for the lack of parameter documentation.
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 states a specific action, 'Permanently deletes an asset,' with a clear resource and scope. It contrasts with siblings like get_asset, list_assets, and upload_asset by making the destructive intent explicit.
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 warning 'DESTRUCTIVE — confirm with the user first' provides clear context for when this tool should be invoked, emphasizing user confirmation. It does not explicitly enumerate alternatives, but the delete-versus-read/write distinction is evident from the tool name and sibling set.
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.