Skip to main content
Glama
aymandakirgh

pinterest-mcp

by aymandakirgh

List media uploads

pinterest_list_media
Read-only

Lists a Pinterest account's registered media uploads and their statuses. Paginate with bookmark and page_size.

Instructions

List the account's registered media uploads and their statuses. Scope: pins:read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bookmarkNoOpaque cursor from a previous response's `bookmark` field. Omit for the first page.
page_sizeNoResults per page, 1-250. Pinterest defaults to 25.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds the required OAuth scope, which is real value, but says nothing about pagination, ordering, or what 'status' values look like. Adequate but not rich.

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 short sentences, front-loaded with the action and scope constraint, with 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 read-only listing tool with full parameter coverage and no output schema, the description covers what is returned (uploads and their statuses) and the auth requirement. Minor gaps around pagination and result shape, but nothing an agent needs in order to call it correctly is missing.

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%: bookmark and page_size are both fully documented in the schema, including the 1-250 range and the default of 25. The description adds nothing about parameters, so the baseline 3 applies.

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 (List), resource (the account's registered media uploads) and an extra detail (their statuses), which distinguishes it from the singular pinterest_get_media and the write-side pinterest_register_media. It does not name those siblings explicitly, so it falls short of a 5.

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?

The 'Scope: pins:read' note tells the agent the required permission, which is genuinely useful context, but there is no explicit when-to-use guidance or routing to pinterest_get_media for a single upload. Usage is only implied by the plural 'list' framing.

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