Skip to main content
Glama
aymandakirgh

pinterest-mcp

by aymandakirgh

Delete board

pinterest_delete_board
DestructiveIdempotent

Permanently delete a Pinterest board and all pins saved to it; this action cannot be undone. Use board_id for the board and ad_account_id for shared business assets.

Instructions

Permanently delete a board AND every pin saved to it. This cannot be undone. Scope: boards:write.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
board_idYesThe board id to delete permanently.
ad_account_idNoAct on behalf of this ad account. Required only for business accounts operating on a shared asset.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare destructiveHint=true, so the safety profile is covered structurally. The description adds genuinely non-redundant context: irreversibility ('This cannot be undone') and the cascade delete of all contained pins, plus the required OAuth scope. It stops short of return format or error behavior, but for a deletion call this is strong.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, front-loaded with the destructive scope, then the irreversibility warning, then the auth requirement. No filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive tool with no output schema, the description covers the two things an agent most needs to know before calling: the cascade effect and irreversibility. Only return/error semantics and when-to-use are absent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so both parameters are documented in the schema, including the ad_account_id business-account nuance. The description adds nothing param-specific, so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (delete) plus resource (board), and explicitly names the cascade consequence ('AND every pin saved to it'). This distinguishes it from siblings like pinterest_delete_pin and pinterest_delete_board_section.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use guidance, no mention of alternatives (e.g., pinterest_update_board for reversible changes), and no stated prerequisites beyond the scope string. The agent gets no routing help.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.