pinterest-mcp
Provides tools for interacting with Pinterest's API v5, enabling AI agents to read board and pin data, view analytics, and publish new pins and boards.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pinterest-mcplist my Pinterest boards"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pinterest-mcp
A minimal Model Context Protocol server for the Pinterest API v5. Reads boards/pins/analytics; publishes new pins and boards. Built for a multi-agent fleet where a human must sign off before anything reaches the public account.
Setup
npm install
npm run buildRequires a Pinterest Developer App (https://developers.pinterest.com/apps/) with a registered redirect URI of http://localhost:3034/oauth/redirect. Note the App ID and App Secret.
Getting a token
PINTEREST_APP_ID=<id> PINTEREST_APP_SECRET=<secret> \
PINTEREST_CREDENTIALS_FILE=/home/you/.openclaw/credentials/pinterest.env \
node scripts/get-pinterest-token.mjsApprove in the browser. The script writes PINTEREST_APP_ID, PINTEREST_APP_SECRET, PINTEREST_ACCESS_TOKEN, PINTEREST_REFRESH_TOKEN, PINTEREST_TOKEN_EXPIRES_AT into the file (mode 0600). Tokens are deliberately not printed.
Pass --port <n> if 3034 is taken (register the matching redirect URI in the Pinterest app). The listener binds before printing the authorize URL, so an occupied port fails loudly rather than burning the one-time auth code.
Configuration
{
"mcpServers": {
"pinterest": {
"command": "node",
"args": ["/path/to/pinterest-mcp/dist/index.js"],
"env": {
"PINTEREST_CREDENTIALS_FILE": "/home/you/.openclaw/credentials/pinterest.env"
}
}
}
}The server rewrites PINTEREST_ACCESS_TOKEN / PINTEREST_TOKEN_EXPIRES_AT in that file when it refreshes (Pinterest access tokens expire after ~30 days). OpenClaw's MCP config bakes env vars at mcp add time and cannot rewrite them; the file it points at can be rewritten — same pattern as x-mcp.
Related MCP server: mcp-reddit-publisher
Available tools
Tool | Description |
| Current account (username, id, account type). Safe read. |
| List boards, paginated. Safe read. |
| One board's details by id. Safe read. |
| List pins, optionally scoped to one |
| One pin's details by id. Safe read. |
| Impressions / saves / pin clicks / outbound clicks / video views for our own pin. Safe read. |
| Live. Create a new board on the account. |
| Live. Publish an immediately-visible pin to one of our boards. |
Write tools require agent_id (must hold the social capability) and task_id (task must be Done and carry at least one approved output; brand must match PINTEREST_SERVER_BRAND, default with_nate). Both are ordinary refusals, not crashes — a gate rejection returns isError: true with a readable message.
Pinterest-specific gotchas
Trial mode. A fresh Pinterest Developer app starts in trial mode, limited to the app owner's own account. That is its own safety net for a first-time integration — write scope cannot touch anyone else's account until the app is submitted for review and approved for standard access.
Access-token rotation. Tokens expire in ~30 days; the server refreshes proactively via
POST /v5/oauth/tokenwithgrant_type=refresh_token. The refresh token itself usually persists but is written back to the credentials file if Pinterest ever rotates it.image_urlmust be publicly reachable. Pinterest fetches the image server-side. A local filesystem path (e.g. a MUSE-generated PNG under/mnt/d/Fleet/...) will fail — the file has to be hosted somewhere public first, or uploaded via Pinterest's separatePOST /v5/mediaflow (not implemented in this first version).Put the destination URL in
link, notdescription. Thelinkfield is whatpinterest_get_pin_analyticscounts outbound clicks against. For Etsy promotion the Etsy listing URL goes there.PNG or JPEG. Other formats are rejected by Pinterest at pin-create time.
Security model: agent_id capability gating + brand + publish-clearance
OpenClaw doesn't propagate per-agent caller identity down to MCP tool calls in this version (all agents share the same MCP process — confirmed platform limitation, openclaw/openclaw#67682). Write tools ask the fleet board's own capability record for the caller before doing anything, via GET /agents/{id}/capabilities at FLEET_BOARD_URL (default http://127.0.0.1:8420).
A second call — GET /tasks/{id}/publish-clearance?brand=<brand> — proves both the task's brand matches this server AND that a human has actually closed the task with an approved output. Same endpoint every outward server uses; the board owns the rule.
Honest limitations:
agent_idis self-reported by the caller, not cryptographically bound. This turns a silent wrong-agent action into a loud, rejected, auditable one — it does not stop a determined actor from lying.The clearance gate is defence in depth. The load-bearing rule is that the board's own fan-out (
BRAND_CHANNELSinpickup.py) decides whether a publishing subtask is ever created. This gate catches an agent reaching for the tool outside that flow.
Standalone use: either stand up a minimal service at FLEET_BOARD_URL returning a JSON string array for GET /agents/{id}/capabilities and a {cleared: bool, reasons: string[]} for GET /tasks/{id}/publish-clearance, or remove the requireCapability / requireBrand calls from src/index.ts.
Deliberately not exposed
Deleting a pin (
DELETE /v5/pins/{pin_id}). An unreviewed retraction of live content is a real, unrecoverable outward action. Deletions stay with Nathan, via the Pinterest app.Deleting a board. Same reason.
Follows / reactions. Social actions belong behind an explicit ECHO decision, not incidentally callable.
Notes on safety
Every request goes to
api.pinterest.comorwww.pinterest.comonly — no telemetry, no third-party calls, no dynamic code execution.Credentials live in a mode-0600 file rewritten in place. Tokens are never printed by either the server or the OAuth catcher.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceThis read-only MCP Server allows you to connect to Pinterest data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcp4MIT
- AlicenseAqualityBmaintenanceMCP server for publishing to Reddit with safety features like dry-run, allowlist, and rule checking.5MIT
- Alicense-qualityDmaintenancePython MCP server that exposes Meta Marketing API data, providing tools to manage ad accounts, campaigns, and analytics through natural language interfaces.MIT
- AlicenseBqualityDmaintenanceMCP server connector for Pinterest — search pins, manage boards, save pins, and follow users via Playwright browser automation.1012MIT
Related MCP Connectors
A basic MCP server to operate on the Postman API.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
MCP server exposing Kettle Logic insight articles & industry guidance as tools + resources.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/N-Graves/pinterest-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server