Skip to main content
Glama
aymandakirgh

pinterest-mcp

by aymandakirgh

Create pin

pinterest_create_pin

Publish an image, carousel, or video pin to a chosen board using a URL, base64 data, or an uploaded media ID, with optional title, link, and alt text.

Instructions

Create a pin on one of the authenticated user's boards. Requires a board_id and a media_source. Scope: pins:write (pins:write_secret for secret boards).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
linkNoDestination URL opened when the pin is clicked.
noteNoPrivate note, visible only to the owner.
titleNoPin title, up to 100 characters.
alt_textNoAccessibility text describing the image.
board_idYesBoard to save the pin to.
descriptionNoPin description, up to 800 characters.
media_sourceYesThe pin's media. Pick the variant matching what you have: a URL, base64 bytes, a carousel, or an uploaded video.
ad_account_idNoAct on behalf of this ad account. Required only for business accounts operating on a shared asset.
dominant_colorNoHex colour like '#6E7874'. Only for non-video pins.
board_section_idNoSection within the board.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already convey that this is a non-read-only, non-idempotent, non-destructive, open-world write. The description adds genuinely new behavioral context: the exact scopes needed (pins:write, and pins:write_secret on secret boards) and the required inputs. It does not discuss failure modes or rate limits, so it stops short of a 5.

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

Conciseness4/5

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

Three short, front-loaded sentences with no filler; the core action comes first and the constraints follow. The middle sentence is mildly redundant with the schema's required list, which is the only thing keeping it off a 5.

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 10-parameter create tool, the description correctly delegates the complex media_source variants to the schema and covers the points the schema cannot express (scope requirements). With no output schema, it could have hinted at what is returned (e.g. a pin id), which is the one remaining gap.

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%, and the media_source union already documents all four variants and their required fields in detail, so the schema carries the parameter burden. The description's mention of board_id and media_source only restates what the schema already marks as required, adding no new semantics.

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

Purpose4/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 pin) and scopes it to "one of the authenticated user's boards." It does not, however, distinguish itself from the very similar sibling pinterest_save_pin, which an agent must choose between.

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

Usage Guidelines3/5

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

It gives the prerequisites for calling (a board_id and a media_source must be supplied) and the OAuth scopes required, which is useful context. But it never says when to prefer this over pinterest_save_pin or pinterest_update_pin, so tool selection between near-identical siblings is left to inference.

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