Skip to main content
Glama
aymandakirgh

pinterest-mcp

by aymandakirgh

Get media upload status

pinterest_get_media
Read-only

Check the status of a registered Pinterest media upload by media_id; track progress from registered to processing to succeeded or failed.

Instructions

Check a registered upload. Status moves registered -> processing -> succeeded (or failed). Scope: pins:read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
media_idYesMedia id from pinterest_register_media.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so the safety profile is covered. The description adds real behavioral value by disclosing the status progression registered -> processing -> succeeded (or failed) and the pins:read scope requirement, though it says nothing about rate limits or how to interpret a failed terminal state.

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, front-loaded sentences with zero filler: purpose, state machine, and scope. Every clause earns its place and the core action is stated first.

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?

With no output schema, the description reasonably conveys the meaningful return concept (the status field and its possible values), which is the key information an agent needs. It is slightly thin on what a failed result contains or whether other fields are returned, but it is complete enough for a single-parameter status tool.

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 coverage is 100% and there is a single parameter, so the schema already documents media_id and its origin from pinterest_register_media. The description adds no syntax or format detail beyond that, matching the baseline for schema-driven params.

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 ('Check a registered upload') and reinforces it with the status state machine, which clearly separates it from pinterest_register_media (creates) and pinterest_list_media (enumerates). An agent can tell exactly what this does.

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

Usage Guidelines4/5

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

Implies the usage context by tying it to 'a registered upload' and describing the status lifecycle, telling the agent this is a polling/verification call after registration. It does not explicitly name alternatives or state when not to use it, so it stops short of a 5.

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