Pinterest Ads: 26 read tools and 5 write tools that preview before they apply.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An open-source Model Context Protocol server for the Pinterest Ads API. It lets Claude, ChatGPT, Cursor or any MCP client read and analyse your Pinterest advertising data, and change it if you choose to.
You run it. Your token stays on your machine. Nothing is proxied through a third party.
Also listed in the MCP Registry as com.getmcpads/pinterest-ads, so clients that read the registry can install it by name.
Prefer not to run it yourself? getmcpads.com is the hosted version of this server, with Pinterest Ads alongside Meta Ads, Google Ads, TikTok Ads, Google Analytics and Search Console behind a single endpoint, hosted OAuth, and cross-platform reporting. Same tools, same safety model, no setup.
| 26 read tools | Reporting, campaigns and ad groups, audiences, targeting, keywords, conversions, catalogs, business assets, billing, Pins and trends |
| 5 write tools | Off by default. Campaign and ad group status and budgets, campaign creation. Each one previews before it applies |
| 7 resources | Live catalogues the model can read: reporting columns, attribution windows, creative assets, catalog reporting, surface map, recipes |
| Organic alongside paid | Pin analytics and trends, not just the ad account |
| Privacy by construction | Lead records are not exposed at all, and member identifiers are redacted by default |
Pinterest names its reporting columns in its own way, and this server accepts those names directly rather than inventing friendly aliases on top. A column that exists in the API works here; one that does not fails immediately rather than being silently translated into something else.
pinterest://reporting-columns lists what is available, and pinterest_validate_report
checks a request before it runs.
Pinterest shipped an official MCP server in June 2026, with authentication handled by Pinterest's own systems. It launched read-only: an agent can pull performance data and account context, but cannot change a budget, pause a campaign or edit a bid.
| This server | Pinterest's official server | getmcpads.com | |
|---|---|---|---|
| Hosting | You host it. stdio, local process | Pinterest-hosted | Hosted for you |
| Data path | Direct to the API. No intermediary | Through Pinterest's endpoint | Through our gateway |
| Writes | Yes, preview first, applied only on confirm: true | None, read-only at launch | Yes, preview first |
| Auditable | Yes. Apache-2.0, read every line | No | This server, audited |
| Modifiable | Fork it | No | No |
| Auth | You bring a token, which is more setup | Handled by Pinterest | Hosted OAuth |
Choose Pinterest's for the least setup, if reporting is all you need. Choose this one if you want your data to stay on your infrastructure, want to audit or extend what the model can do, or want guarded writes rather than none. Choose getmcpads.com if you want this server's capabilities without running it, or you need more than one ad platform in the same conversation.
Two protections, and they work differently.
Lead records are never exposed. pinterest_get_lead_assets returns lead form and
subscription configuration, but never the lead export itself, because those rows carry
personal information submitted by end users. This is an exclusion, not a redaction: the data
does not leave Pinterest through this server at all.
Business member identifiers are redacted by default. Member IDs, email addresses and
usernames are replaced before they reach the model when you read members, asset members or
invites. includePersonalIdentifiers: true returns the raw values and defaults to false.
These are your colleagues' addresses, so the default is the safe one.
You need a Pinterest access token with the ads:read scope.
ads:read, and ads:write only if you plan to enable writes.π Pinterest API authentication
You can run with just PINTEREST_ACCESS_TOKEN, but it expires. Supplying
PINTEREST_REFRESH_TOKEN, PINTEREST_APP_ID and PINTEREST_APP_SECRET together lets the
server renew the token itself, which is what you want for daily use.
Run pinterest_health_check as your first call. It verifies the token and lists the ad
accounts you can reach, without printing the token.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Restart Claude Desktop. Ask it: "list my Pinterest ad accounts".
.cursor/mcp.json in your project, same shape as the Claude Desktop config above.
| Variable | Default | Meaning |
|---|---|---|
PINTEREST_ACCESS_TOKEN | none | Access token with ads:read |
PINTEREST_REFRESH_TOKEN | none | With the two below, lets the server renew the token |
PINTEREST_APP_ID | none | App ID, needed for refresh |
PINTEREST_APP_SECRET | none | App secret, needed for refresh |
PINTEREST_AD_ACCOUNT_ID | none | Optional default, saves passing it on every call |
PINTEREST_ENABLE_WRITES | unset | Set to 1 to register the 5 write tools |
LOG_LEVEL | info | debug, info, warn, error |
Either the access token, or the refresh trio. The server refuses to start with neither.
Write tools are disabled by default. Enable them with PINTEREST_ENABLE_WRITES=1, and
grant ads:write on top of ads:read.
When enabled, every write tool returns a preview and changes nothing:
Only a second call carrying confirm: true touches the live account.
This is deliberate. An assistant composes these calls, and it can pick the wrong ad account, the wrong campaign, or the wrong order of magnitude on a budget. A mandatory preview makes the mistake visible before it costs money, and gives a human the stopping point the protocol does not guarantee on its own.
Two further guardrails:
pinterest_create_campaign always creates the campaign PAUSED. There is no option to
create it active.12500000. The preview shows both, so a
factor-of-a-million mistake is visible before it applies. A daily and a lifetime budget
sent together are refused rather than silently resolved.| Tool | What it changes |
|---|---|
pinterest_update_campaign_status / pinterest_update_adgroup_status | Pause, reactivate or archive |
pinterest_update_campaign_budget / pinterest_update_adgroup_budget | Daily or lifetime budget |
pinterest_create_campaign | Creates a campaign, always PAUSED |
| Tool | Purpose |
|---|---|
pinterest_health_check | Verifies the token and lists reachable ad accounts |
pinterest_list_ad_accounts | Every ad account the token can reach |
pinterest_get_account_entities | Campaigns, ad groups and ads in one call |
pinterest_get_business_assets | Businesses, members and invites. Identifiers redacted |
pinterest_get_platform_resources | Enumerations and reference data the API exposes |
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/pinterest-ads)<a href="https://allmcps.com/mcp/pinterest-ads"><img src="https://allmcps.com/api/badge/pinterest-ads?style=directory" alt="Pinterest Ads on AllMCPs" /></a>