Create and manage Pinterest boards and Pins, save content, and read account info via the Pinterest REST API v5.
Pinterest ships in the w6w first-party pack. It declares 16 actions, 2 health checks, and the host runs its code in a sandbox that never sees the credential.
io.w6w.pinterestPinterest’s v5 REST API is organized around two owned resources — boards and Pins — plus the account that owns them, and this app covers the full CRUD surface for both: create, read, list, update and delete a board; create, read, list, update and delete a Pin; save an existing Pin onto one of your own boards; search your own Pins; and read the connected account’s profile and, when the connection has Business Access to one, its ad accounts.
Creating a Pin from an image is fully supported by pointing media_source at a public image URL, which Pinterest fetches server-side — no upload step required. Creating a VIDEO Pin is deliberately left out: it requires first registering a video with POST /media, which hands back a one-time upload target this app’s sandboxed network access has no way to reach in advance (the same reason LinkedIn’s image/video posting is absent from this pack). A Pin can still be updated, deleted or saved regardless of its media type.
Everything here was verified against Pinterest’s own OpenAPI 3.0 description (github.com/pinterest/api-description, v5/openapi.json, REST API version 5.28.0) and live probes against api.pinterest.com, not a third-party integration directory.
Three routes to the same 16 actions. The Workflow tab is generated from Pinterest's own manifest and carries its real ids, so it is copy-pasteable; the Code and CLI examples are the same call for any action on any app, so every app-specific value in them is a blank you fill in.
ad-account-list List the ad accounts the connected account can act as, via Business Access.
board-list List the connected account's boards, including group boards it collaborates on.
pin-create Create an image Pin on a board. Pinterest fetches the image from the URL you provide — no upload step needed.
pin-search Search the connected account's own Pins by keyword or comma-separated Pin IDs.
pin-update Update a Pin's title, description, alt text, link, or move it to another board.
A workflow step names the app and the action, and the editor fills in the
connection when you pick one. This is the Step shape from the
workflow spec, carrying Pinterest's real ids.
{
"manifestVersion": "2",
"name": "pinterest-example",
"steps": [
{
"id": "ad-account-get",
"uses": {
"app": "io.w6w.pinterest",
"action": "ad-account-get",
"connection": "conn_YOUR_CONNECTION_ID"
},
"with": {
"adAccountId": "<adAccountId>"
}
}
]
}ad-account-get ad-account-list board-create board-get board-list +11 more actions available
Every app-specific value here is a blank you have to fill in. An
app action is reached through the connection that authenticates it, so the
address is a connection id, not the app id — and connections belong to your account,
so a public page cannot know yours. Create one for Pinterest, then fill in
the three blanks: conn_YOUR_CONNECTION_ID, the action key, and the
parameters that action declares. The call itself is real — the shape is transcribed
from the studio's own snippet builder, which prints the same kind of blanks — but
nothing in it is specific to Pinterest. The Workflow tab is where this app's
real ids are.
npm install @w6w/sdkyarn add @w6w/sdkpnpm add @w6w/sdkdeno add npm:@w6w/sdkimport { W6wClient, isActionRun } from "@w6w/sdk";
// Reads W6W_BASE_URL and W6W_TOKEN from the environment when omitted.
const client = new W6wClient();
const envelope = await client.run({
urn: "conn_YOUR_CONNECTION_ID",
action: "ad-account-get",
payload: {
adAccountId: "<value>",
},
});
if (isActionRun(envelope)) console.log(envelope.value); npm install -g @w6w/cli w6w run conn_YOUR_CONNECTION_ID --action ad-account-get --payload '{"adAccountId":"<value>"}' Give an AI agent Pinterest — without giving it Pinterest's credentials. One MCP endpoint exposes every app, function and workflow the caller is entitled to, as tools it can discover and run. Access is granted per team while we onboard.
One tool call{
"name": "w6w_invoke",
"arguments": {
"ref": "app:io.w6w.pinterest#ad-account-get",
"input": {
"adAccountId": "<adAccountId>"
}
}
}
Every tool names its target with a single ref. The
app: form above doesn't name a connection at all — the
host resolves which of the caller's Pinterest connections to sign
with, and refuses rather than guesses when the answer is ambiguous.
The token is attached host-side, at the moment of the call. It is never a tool argument, never in the model's context, and never in a transcript — so a prompt injection has nothing to exfiltrate.
Tools are derived per end user from what that person has actually connected and is entitled to — not one shared bot identity carrying the union of everyone's access.
Multi-step work runs on the workflow engine and returns a run handle the agent can poll — retries, branching and state survive the conversation that started them.
Pinterest's declared health checks are on the surface too, so an agent can tell "the vendor is down" from "your credential expired" before it burns a retry on either.
The MCP surface is part of the hosted platform. Pinterest itself is MIT, and the runtime that executes it is source-available (FSL).
Pinterest declares its own checks, so its health is a property of the app rather than something the host guesses at.
Component status from www.pintereststatus.com, filtered to "The Pinterest API" group — Content and Core, Conversions, Campaign Management, Audience Targeting, Analytics, Shopping, Business Access and Billing, and Trends endpoints. The other 33 components on that page describe the pinterest.com website and Ads Manager UI, not this app's API calls.