pinterest-ads-mcp-server
Provides tools for interacting with the Pinterest Ads API, including reading and analyzing advertising data such as campaigns, ad groups, audiences, targeting, reporting, catalogs, business assets, and Pins, with optional guarded write capabilities for campaign and ad group management.
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-ads-mcp-serverShow me last week's Pinterest campaign performance by CTR and spend"
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-ads-mcp-server
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.
npx -y @getmcpads/pinterest-ads-mcp-serverPrefer 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.
What you get
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 |
Raw column names, on purpose
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.
Related MCP server: Meta Ads MCP
How this compares to Pinterest's own MCP server
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.
Pinterest's official server | This server | ||
Hosting | Pinterest-hosted | You host it. stdio, local process | Hosted for you |
Data path | Through Pinterest's endpoint | Direct to the API. No intermediary | Through our gateway |
Writes | ❌ read-only at launch | ✅ preview first, applied only on | ✅ preview first |
Auditable | No | Yes. Apache-2.0, read every line | This server, audited |
Modifiable | No | Fork it | No |
Auth | Handled by Pinterest | You bring a token, which is more setup | 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.
Privacy, built into what the tools return
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.
Getting a token
You need a Pinterest access token with the ads:read scope.
Create an app in the Pinterest developer portal.
Note the App ID and App secret.
Run the OAuth flow while signed in to the account that can access your ad accounts. Request
ads:read, andads:writeonly if you plan to enable writes.Keep the access token, and the refresh token if you want the server to renew it.
📖 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.
Setup
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"pinterest-ads": {
"command": "npx",
"args": ["-y", "@getmcpads/pinterest-ads-mcp-server"],
"env": {
"PINTEREST_ACCESS_TOKEN": "your-token-here"
}
}
}
}Restart Claude Desktop. Ask it: "list my Pinterest ad accounts".
Claude Code
claude mcp add pinterest-ads --env PINTEREST_ACCESS_TOKEN=your-token -- npx -y @getmcpads/pinterest-ads-mcp-serverCursor
.cursor/mcp.json in your project, same shape as the Claude Desktop config above.
From source
git clone https://github.com/getmcpads-com/pinterest-ads-mcp-server.git
cd pinterest-ads-mcp-server
npm install && npm run build
cp .env.example .env # then fill in your credentials
npm startConfiguration
Variable | Default | Meaning |
| none | Access token with |
| none | With the two below, lets the server renew the token |
| none | App ID, needed for refresh |
| none | App secret, needed for refresh |
| none | Optional default, saves passing it on every call |
| unset | Set to |
|
|
|
Either the access token, or the refresh trio. The server refuses to start with neither.
npm run doctorWrites, and why they preview first
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:
// pinterest_update_adgroup_budget { adAccountId: "549…", adGroupId: "268…", dailyBudget: 50 }
{
"applied": false,
"action": "pinterest_update_adgroup_budget",
"change": { "adAccount": "549…", "adGroup": "268…",
"field": "budget_in_micro_currency", "amount": 50,
"inMicroCurrency": 50000000 },
"message": "Preview only, nothing was changed. Repeat the same call with confirm: true to apply this change to the live account."
}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_campaignalways creates the campaignPAUSED. There is no option to create it active.Amounts are converted to micro units for you. Pinterest holds money in millionths, so 12.50 in the account currency is
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 |
| Pause, reactivate or archive |
| Daily or lifetime budget |
| Creates a campaign, always |
Tools
Discovery and health
Tool | Purpose |
| Verifies the token and lists reachable ad accounts |
| Every ad account the token can reach |
| Campaigns, ad groups and ads in one call |
| Businesses, members and invites. Identifiers redacted |
| Enumerations and reference data the API exposes |
Reporting
Tool | Purpose |
| The main reporting tool, on raw column names |
| Check a request before running it |
| Delivery and pacing signals |
| Performance broken down by targeting |
| Async exports for large result sets |
| Forecast reach for a targeting set |
Audiences and targeting
Tool | Purpose |
| Audiences and their composition |
| Available targeting dimensions and values |
| Keyword metrics and suggestions |
| What is rising on Pinterest |
Creatives and organic
Tool | Purpose |
| Ad creatives, media and their metadata |
| Organic Pins and boards |
| Performance of individual Pins |
Commerce
Tool | Purpose |
| Product feeds and their health |
| Catalog performance |
| Conversions by product |
| Conversion tags and events |
Operations
Tool | Purpose |
| Billing and order history |
| Lead form configuration. Lead records are never returned |
URI | Contents |
| What this server exposes, and its current mode |
| Every reporting column the API accepts |
| Attribution windows and their defaults |
| How creative assets are shaped |
| Catalog-specific reporting columns |
| Which tool covers which part of the API |
| Step-by-step workflows |
Security
The token is never logged, at any log level, or written to disk.
One host is contacted, and only one:
api.pinterest.com. A test fails the build if a second host appears in the source.No fetch follows a redirect. Every outbound call sets
redirect: "error", so a redirect cannot forward your token to another host. A test fails the build if any fetch omits this.Async report URLs are validated before being fetched. Pinterest returns a download URL on a host it chooses; that value is data from the API, not something to trust. HTTPS only, no private or loopback address, no redirect, and no credential attached.
No telemetry. The server makes no network call other than to Pinterest.
Full policy, including how personal data is handled: SECURITY.md.
Looking for a managed, multi-platform version?
This server does one platform, on your machine, with your token. That is on purpose.
If you'd rather not run it yourself, or you need Pinterest Ads alongside Meta Ads, Google Ads, TikTok Ads, Google Analytics and Search Console behind one endpoint, with hosted OAuth and cross-platform reporting, that's what we build at getmcpads.com.
Same philosophy, less plumbing. This project stays open source and independently useful either way.
Contributing
Issues and pull requests are welcome. See CONTRIBUTING.md. Please read SECURITY.md before reporting anything security-related.
Licence
Apache License 2.0. See also NOTICE.
Pinterest is a trademark of Pinterest, Inc. This project is not affiliated with, endorsed by, or sponsored by Pinterest, Inc. It is an independent client of a public API.
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
- AlicenseAqualityBmaintenanceExtends the official Google Ads MCP with a safe write layer for creating paused-by-default Search campaigns and an account auditor, all running locally with no hosted dependencies.131Apache 2.0
- AlicenseBqualityDmaintenanceMCP server for the Meta Marketing API with 118 typed tools across ads, insights, pixels/CAPI, pages, Instagram, WhatsApp, catalogs, audiences, leads, and billing, featuring secure token storage and a confirmation gate on destructive calls.100MIT
- FlicenseNot gradedqualityBmaintenanceA read-only MCP server for querying Meta Ads accounts through Meta's Marketing API. It provides tools to retrieve ad accounts, campaigns, ad sets, ads, and performance insights.
- FlicenseNot gradedqualityCmaintenanceEnables management of Google Ads accounts via MCP, providing read and write tools for campaigns, ad groups, keywords, assets, and more, with support for reporting and mutations.
Related MCP Connectors
Browser MCP for logged-in tasks. Uses your Chrome — credentials stay local. Zero-token replay.
Search Meta, Google Ads, LinkedIn, and TikTok ad libraries plus creative analysis via MCP.
Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.
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/getmcpads-com/pinterest-ads-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server