Skip to main content
Glama
aymandakirgh

pinterest-mcp

by aymandakirgh

Create board

pinterest_create_board

Create a new Pinterest board on the authenticated account, with optional privacy, description, and ad account support.

Instructions

Create a new board on the authenticated account. Scope: boards:write (boards:write_secret for SECRET boards).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesBoard name, as shown on the profile.
privacyNoDefaults to PUBLIC. SECRET boards are visible only to the owner.
descriptionNoBoard description.
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

A4/5.0
Behavior4/5

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

Annotations already declare write (readOnly=false), non-idempotent, non-destructive, open-world behavior, so the bar is lower. The description still adds genuine value by disclosing required OAuth scopes (boards:write, and boards:write_secret specifically for SECRET boards), which the agent cannot infer from annotations alone.

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?

Two tight sentences with the operation front-loaded and the scope caveat second; no filler or redundancy.

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 write tool with full annotation coverage and 100% schema descriptions, the entry covers purpose, auth scope, and the SECRET exception. It omits error behavior (e.g. duplicate board names) and the returned identifier, but with no output schema that omission is minor.

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

Parameters4/5

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

Schema coverage is 100%, so baseline is 3, but the description adds parameter-linked meaning: choosing privacy=SECRET changes the required scope to boards:write_secret. That links a schema enum to an auth consequence the schema itself does not mention.

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 and resource ("Create a new board") plus the target account, which cleanly separates it from the update/delete/list/get board siblings. The scope clause further qualifies the operation for SECRET boards.

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?

The description never states when to choose this tool over alternatives (e.g. update_board, create_board_section) or any precondition beyond scope. The scope line is auth context rather than a when-to-use guideline, so guidance is essentially absent.

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