delete_pin
Remove a Pinterest pin by its ID to clean up boards or correct content errors.
Instructions
Delete a pin by ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pin_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Remove a Pinterest pin by its ID to clean up boards or correct content errors.
Delete a pin by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| pin_id | Yes |
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It only states the destructive action but does not mention whether deletion is permanent, requires special permissions, fails for non-existent pins, or affects related data. This is a significant gap for a mutation tool.
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, efficient sentence with no fluff. It is appropriately sized for a simple delete operation, though it could have used the space to include important usage caveats.
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?
Despite an output schema existing, the description does not reference return values or error conditions. For a delete tool with no annotations, the description is incomplete: an agent cannot anticipate consequences, failure modes, or authorization needs. It is minimally adequate but lacks essential context.
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 schema has 0% description coverage, so the description must compensate. It merely repeats 'by ID' without clarifying the ID format, source, or validation. The description adds no meaningful value beyond the schema's basic field name.
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 ('Delete') and a resource ('pin') with an identifier ('by ID'). It is clear and distinct from siblings like create_pin and update_pin, though it doesn't explicitly contrast them.
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 on when to use this tool versus alternatives, no prerequisites (e.g., pin existence, permissions), and no exclusions. The agent is left to infer that deletion is the intended action without any context on how it fits into a workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.