Pinterest Ads by Get MCP Ads
Provides tools for managing Pinterest advertising campaigns, including reporting, campaign and ad group operations, budgets, audiences, targeting, keywords, conversions, catalogs, business assets, billing, and Pin analytics.
Pinterest Ads MCP server
Connect the dots in your Pinterest campaigns.
Explore reporting, audiences, catalogs and native campaign operations from your MCP client.
Watch the demo · What's new · Install · Tool reference · Try hosted getmcpads

Play the 27-second product film
The film demonstrates hosted getmcpads with staged data. Its creative galleries and MCP Apps interface belong to the hosted product. This repository provides the standalone native API tools.
28 read tools · 25 write tools, disabled by default.
Run locally with your own platform credentials and a client that supports stdio MCP, such as Claude Desktop, Claude Code or Cursor. Your requests go directly to the platform. For managed connections, including supported ChatGPT setups, use the hosted option.
What's new
v2.0.1: Native tools and security update · September 20, 2026
Update native campaign/ad-group validation, budget ownership and exact readback checks.
Add the native collection-ad tool and preserve private report URL and redirect guards.
Exclude hosted frozen-file video upload workflows.
Require Node.js 22.12 or newer and check Node 22/24 in CI.
Update vulnerable dependencies and regenerate the MCP catalog.
Full changelog · Source synchronization details · All releases
Upgrade notes
Requires Node.js 22.12 or newer. CI covers Node 22 and 24. Version 2.0.1 drops Node 18 and 20 support. Read the current tool schemas before reusing saved arguments. Writes remain optional and require explicit confirmation. Hosted creative integrations and MCP Apps UI are outside this release.
Related MCP server: pinterest-ads-mcp-server
Install this release
This is a GitHub source release. npm and MCP Registry versions are published separately. The commands below select this exact version; unpinned npx examples later in this document select the version currently available on npm.
git clone --branch v2.0.1 --depth 1 https://github.com/get-mcp-ads/pinterest-ads-mcp-server.git
cd pinterest-ads-mcp-server
npm ci
npm run buildConfigure your MCP client to run node with the absolute path to dist/cli.js and the platform credentials documented below.
Prefer a managed connection? Use Pinterest Ads with hosted getmcpads. Connect your account, select the data your assistant may access and use the hosted MCP connection. See the site for current features and plans.
What you get
28 read tools | Reporting, campaigns and ad groups, audiences, targeting, keywords, conversions, catalogs, business assets, billing, Pins and trends |
25 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.
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/get-mcp-ads/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
Every tool is listed below. See server-card.json for complete parameter and output schemas.
Tool | Purpose |
| Read-only Pinterest Ads health check. |
| List Pinterest ad accounts accessible to the configured credentials. |
| Read Pinterest resources/delivery_metrics. |
| Validate and preview how a Pinterest report will execute. |
| Run a read-only Pinterest Ads report. |
| Fetch Pinterest creative assets and period performance when available. |
| Run Pinterest catalog reporting by PRODUCT_GROUP or PRODUCT_ITEM. |
| List Pinterest catalog inventory surfaces: catalogs, product groups, product group promotions, and optional product samples. |
| Run Pinterest async conversion product reporting by brand, category, brand+category, SKU, or SKU group via reports/brand_category_sku. |
| List the ad account's ad creatives across every status (the API silently omits ARCHIVED ads unless asked) with their pin media resolved: public i.pinimg.com image URLs up to 1200px, video cover, and video_url when the app is allowed to read it. |
| Read the official Pinterest v5 native request schema and Sandbox limitations before composing a write. |
| Read Pinterest ad-account entities and configuration. |
| Run live targeting analytics for an ad account, campaigns, ad groups, or ads, broken down by age, gender, location, interest, keyword, audience, placement, device, or other Pinterest targeting types. |
| Read Pinterest's official targeting option catalog for app type, gender, locale, age, location/geo, interest, keyword, or audience. |
| Read assigned targeting keywords, Pinterest country-level keyword metrics, suggested terms, or related terms. |
| Read audience, customer-list, sharing, and Business-received audience inventory without uploading or changing audience membership. |
| Read aggregated Pinterest Audience Insights for the advertiser's total or engaged audience, Pinterest's total audience, or the scope/type endpoint. |
| Run non-mutating Pinterest planning computations: ad-group audience size, bid floors, or campaign delivery estimates. |
| Inspect Pinterest conversion measurement configuration: conversion tags, oCPM-eligible/page-visit tags, Event Quality Score, advertiser-defined events, and conversion-deletion request status. |
| Read deep catalog inventory and diagnostics: catalogs, feeds, feed processing results, item issues, product groups, product counts/products, available filter values, and catalog item lookups. |
| Start or inspect non-mutating Pinterest data jobs for Marketing Mix Modeling (MMM), bulk advertiser entity downloads, or catalog diagnostics. |
| Read lead-form definitions and lead subscription configuration. |
| Read Pinterest Business Access inventory: employers/linked businesses, assets, members, partners, assigned assets, received audiences, and invites. |
| Read billing profiles/invoices, invoice download URLs, order lines, ads-credit discounts, and SSIO account/order status. |
| Read paid Pin analytics, organic multi/single-Pin analytics, user-account analytics, top Pins, or top video Pins. |
| Read organic Pinterest content used alongside ads: Pins, boards, Pins on a board, Pin product tags, or search results. |
| Read Pinterest Trends: top growing/monthly/yearly/seasonal keywords by supported region, growing product categories, product-category details, featured topics, or editorial articles. |
| Read Pinterest platform metadata and readiness resources: supported ad-account countries, delivery metric definitions, metrics readiness, lead-form questions, media upload metadata, commerce integration metadata, or the authenticated user account. |
Disabled by default. Calls preview unless explicitly confirmed. Check the configuration and exact schema before use.
Tool | Purpose |
| Create a PAUSED campaign. |
| Update the status of an existing campaign. |
| Update the status of an existing adgroup. |
| Update the status of an existing ad. |
| Set exactly one daily or lifetime campaign budget in major account currency units. |
| Set exactly one daily or lifetime ad group budget in major account currency units. |
| Update native campaign settings. |
| Update native ad group settings. |
| Update native ad settings. |
| Create a PAUSED ad group with explicit native bidding, targeting, budget and schedule. |
| Create a PAUSED ad from an accessible Pin. |
| Create a PAUSED shopping or collections promotion from a catalog product group. |
| Update a catalog product group promotion. |
| Create a PAUSED collection with an explicitly selected image/video hero Pin and an accessible catalog product group. |
| Create /boards in the selected advertiser context. |
| Update /boards in the selected advertiser context. |
| Create /pins in the selected advertiser context. |
| Update a Pin. |
| Register media upload; returned upload_url/parameters are not confirmation that a video is uploaded or ready. |
| Create /catalogs in the selected advertiser context. |
| Create /catalogs/feeds in the selected advertiser context. |
| Update /catalogs/feeds in the selected advertiser context. |
| Create /catalogs/product_groups in the selected advertiser context. |
| Update /catalogs/product_groups in the selected advertiser context. |
| Submit native CREATE/UPDATE/UPSERT/DELETE catalog item operations. |
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?
Try hosted Pinterest Ads if you want to use this source without operating a local server. getmcpads also connects advertising, Search Console and GA4 through one MCP URL. Source availability and plan limits are listed on the site; connecting an account is still required.
Follow the Pinterest Ads connection guide.
Select the account or property your assistant may read.
Try a read-only review: “Review campaign performance using your selected ad account. State missing data and do not change anything.”
See the current hosted tool catalogue and pricing before choosing a paid plan. This Apache 2.0 adapter remains independently useful with your own credentials.
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.
MCP contracts and desktop bundle
Every tool declares read/write annotations, parameter descriptions and a structured output schema. Successful calls expose the payload as structuredContent.result; errors retain isError: true. The generated server card contains definitions only.
Run npm run bundle -- /path/to/output to build a .mcpb desktop bundle from the current catalog. Credentials are entered locally during installation. Write tools remain disabled unless explicitly enabled.
More from getmcpads
Meta Ads · Google Ads · Google Analytics 4 · Google Search Console · TikTok Ads · X Ads
Maintained by Emmanuel at getmcpads. Questions: hello@getmcpads.com.
This server cannot be deployed
Maintenance
Related MCP Connectors
Google Ads MCP server — manage campaigns, keywords, and metrics.
Google Ads MCP server: 16 tools for reporting, campaigns, keywords, assets. Writes preview first.
MCP server for querying and analyzing data from ad platforms, analytics tools, and spreadsheets
Hosted MCP server for Google Ads and LinkedIn Ads analysis.
Related MCP Servers
- AlicenseAqualityCmaintenanceA minimal MCP server for the Pinterest API v5 that reads boards, pins, and analytics and publishes new pins and boards, with human sign-off required before any public changes.8MIT
- AlicenseBqualityAmaintenanceEnables MCP clients to read and analyze Pinterest advertising data, with optional guarded write tools that preview changes before applying them, all while keeping your token on your own machine and protecting lead records.26229 npmApache 2.0
- AlicenseAqualityBmaintenanceSelf-hosted Google Ads MCP server: 35 read tools and 10 opt-in, preview-first write tools. Maintained source relocated from getmcpads-com/google-ads-mcp-server; npm package remains @getmcpads/google-ads-mcp-server.35248 npmApache 2.0
- AlicenseAqualityAmaintenanceSelf-hosted Meta Ads MCP server with 41 read tools and 23 opt-in, preview-first write tools. Maintained source relocated from getmcpads-com/meta-ads-mcp-server; npm package remains @getmcpads/meta-ads-mcp-server.41255 npmApache 2.0