delete_attachment
Remove an attachment from Firefly III by supplying its ID. Eliminate unwanted files to keep your financial data organized.
Instructions
Delete an attachment.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Remove an attachment from Firefly III by supplying its ID. Eliminate unwanted files to keep your financial data organized.
Delete an attachment.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v3.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'Delete an attachment' without mentioning permanence, irreversibility, permission requirements, or potential cascading effects. This is a significant gap for a destructive operation.
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 no waste, but it is under-specified for the burden it carries. It does not earn its place fully because it omits critical operational details, so while concise, it is not sufficiently informative.
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 simple input schema (one string parameter) and no output schema, the description still fails to provide essential context: what the 'id' refers to, whether deletion is permanent, and any prerequisites. An agent calling this tool correctly would need additional implicit knowledge not present in the definition.
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 0% description coverage for the 'id' parameter, and the description does not mention or explain it. An agent cannot infer what 'id' refers to (e.g., attachment ID format, scope) from either source, leaving the parameter essentially undocumented.
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 'attachment', which distinguishes it from sibling tools like upload_attachment, get_attachment, and list_attachments. However, it does not add any scoping or effect details, so it's clear but minimal.
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 guidance on when to use this tool versus alternatives, nor any prerequisites or context such as needing to upload an attachment first. The description provides no exclusions or conditional use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.