Skip to content
VS Code

Pinterest Ads for VS Code

com.getmcpads/pinterest-ads

Pinterest Ads MCP server: 28 read tools, 25 opt-in preview-first writes.

client:VS Code transport:stdio runtime:npm

Install Pinterest Ads in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pinterest-access-token",
      "description": "PINTEREST_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pinterest-refresh-token",
      "description": "PINTEREST_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pinterest-app-id",
      "description": "PINTEREST_APP_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pinterest-app-secret",
      "description": "PINTEREST_APP_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pinterest-ad-account-id",
      "description": "PINTEREST_AD_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pinterest-enable-writes",
      "description": "PINTEREST_ENABLE_WRITES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pinterest-environment",
      "description": "PINTEREST_ENVIRONMENT",
      "password": true
    }
  ],
  "servers": {
    "pinterest-ads": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@getmcpads/pinterest-ads-mcp-server"
      ],
      "env": {
        "PINTEREST_ACCESS_TOKEN": "${input:pinterest-access-token}",
        "PINTEREST_REFRESH_TOKEN": "${input:pinterest-refresh-token}",
        "PINTEREST_APP_ID": "${input:pinterest-app-id}",
        "PINTEREST_APP_SECRET": "${input:pinterest-app-secret}",
        "PINTEREST_AD_ACCOUNT_ID": "${input:pinterest-ad-account-id}",
        "PINTEREST_ENABLE_WRITES": "${input:pinterest-enable-writes}",
        "PINTEREST_ENVIRONMENT": "${input:pinterest-environment}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Pinterest Ads in other clients