Pinterest Ads MCP server: 28 read tools, 25 opt-in preview-first writes.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
claude mcp add pinterest-ads -- npx -y @getmcpads/pinterest-ads-mcp-server{
"mcpServers": {
"pinterest-ads": {
"command": "npx",
"args": ["-y", "@getmcpads/pinterest-ads-mcp-server"],
"env": {
"PINTEREST_ACCESS_TOKEN": "<pinterest_access_token>"
}
}
}
}PINTEREST_ACCESS_TOKENResumen de MCP Servers
<div align="center">
# Pinterest Ads MCP server
### Connect the dots in your Pinterest campaigns.
Explore reporting, audiences, catalogs and native campaign operations from your MCP client.
[](https://github.com/get-mcp-ads/pinterest-ads-mcp-server/releases/latest)
[](https://github.com/get-mcp-ads/pinterest-ads-mcp-server/actions/workflows/ci.yml)
[](https://smithery.ai/servers/hello-6k33/getmcpads-pinterest-ads)
[](LICENSE)
[](package.json)
[Watch the demo](https://www.getmcpads.com/home/film/get-mcp-ads-film-1080p.mp4) · [What's new](#whats-new) · [Install](#install-this-release) · [Tool reference](#tools) · [Try hosted getmcpads](https://www.getmcpads.com/tools/pinterest-ads?utm_source=github&utm_medium=readme&utm_campaign=pinterest-ads)
[](https://www.getmcpads.com/home/film/get-mcp-ads-film-1080p.mp4)
**[Play the 27-second product film](https://www.getmcpads.com/home/film/get-mcp-ads-film-1080p.mp4)**
</div>
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](https://github.com/get-mcp-ads/pinterest-ads-mcp-server/releases/tag/v2.0.1) · 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](CHANGELOG.md) · [Source synchronization details](SOURCE_SYNC.md) · [All releases](https://github.com/get-mcp-ads/pinterest-ads-mcp-server/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.
## 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.
```bash
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 build
```
Configure 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](https://www.getmcpads.com/tools/pinterest-ads?utm_source=github&utm_medium=readme&utm_campaign=pinterest-ads). 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.
1. Create an app in the [Pinterest developer portal](https://developers.pinterest.com/).
2. Note the **App ID** and **App secret**.
3. Run the OAuth flow while signed in to the account that can access your ad accounts.
Request `ads:read`, and `ads:write` only if you plan to enable writes.
4. Keep the **access token**, and the **refresh token** if you want the server to renew it.
📖 [Pinterest API authentication](https://developers.pinterest.com/docs/getting-started/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):
```json
{
"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
```bash
claude mcp add pinterest-ads --env PINTEREST_ACCESS_TOKEN=your-token -- npx -y @getmcpads/pinterest-ads-mcp-server
```
### Cursor
`.cursor/mcp.json` in your project, same shape as the Claude Desktop config above.
### From source
```bash
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 start
```
### Configuration
| 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 25 write tools |
| `LOG_LEVEL` | `info` | `debug`, `info`, `warn`, `error` |
Either the access token, or the refresh trio. The server refuses to start with neither.
```bash
npm run doctor
```
---
## Writes, 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:
```jsonc
// 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_campaign` always creates the campaign `PAUSED`.** 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 |
|---|---|
| `pinterest_update_campaign_status` / `pinterest_uLo que la gente pregunta sobre pinterest-ads-mcp-server
¿Qué es get-mcp-ads/pinterest-ads-mcp-server?
+
get-mcp-ads/pinterest-ads-mcp-server es mcp servers para el ecosistema de Claude AI. Pinterest Ads MCP server: 28 read tools, 25 opt-in preview-first writes. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-23.
¿Cómo se instala pinterest-ads-mcp-server?
+
Puedes instalar pinterest-ads-mcp-server clonando el repositorio (https://github.com/get-mcp-ads/pinterest-ads-mcp-server) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar get-mcp-ads/pinterest-ads-mcp-server?
+
Nuestro agente de seguridad ha analizado get-mcp-ads/pinterest-ads-mcp-server y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene get-mcp-ads/pinterest-ads-mcp-server?
+
get-mcp-ads/pinterest-ads-mcp-server es mantenido por get-mcp-ads. La última actividad registrada en GitHub es del 2026-09-23, con 0 issues abiertos.
¿Hay alternativas a pinterest-ads-mcp-server?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega pinterest-ads-mcp-server en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/get-mcp-ads-pinterest-ads-mcp-server)<a href="https://claudewave.com/repo/get-mcp-ads-pinterest-ads-mcp-server"><img src="https://claudewave.com/api/badge/get-mcp-ads-pinterest-ads-mcp-server" alt="Featured on ClaudeWave: get-mcp-ads/pinterest-ads-mcp-server" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
The fastest path to AI-powered full stack observability, even for lean teams.