A Codex and Claude Code plugin package that lets you manage Spotify advertising campaigns through natural language. Create campaigns, target audiences, launch ads, and pull performance reports — all by describing what you want in plain English.
Check out our post on the Spotify Engineering Blog.
- Codex or Claude Code CLI
- A Spotify Developer account with an ads-enabled app
- A Spotify Ads ad account ID
- Python 3.8+ (for automated OAuth flow; optional — manual flow available as fallback)
claude plugin i spotify-ads-apiAdd the Spotify Ads API plugin marketplace:
codex plugin marketplace add spotify/ads-agentic-toolsRestart Codex after adding the marketplace. Then open the plugin directory in the Codex app, or run codex and enter /plugins in the CLI. Select the added marketplace and install/enable Spotify Ads API.
Use codex plugin marketplace upgrade later to refresh installed marketplace sources.
Use a source checkout for local development or testing unreleased changes.
-
Clone the repository:
git clone https://github.com/spotify/ads-agentic-tools.git cd ads-agentic-tools -
For Codex, register the checkout as a local marketplace:
codex plugin marketplace add "$(pwd)"Restart Codex after adding the marketplace. Then open the plugin directory in the Codex app, or run
codexand enter/pluginsin the CLI. Select the local marketplace and install/enable Spotify Ads API. -
For Claude Code, launch with the plugin directory:
claude --plugin-dir "$(pwd)"The Claude
--plugin-dirflag loads the plugin for that session only. You can also add it to a shell alias if you use it frequently:alias claude-ads='claude --plugin-dir /path/to/ads-agentic-tools'
The repository includes platform-specific marketplace metadata: .agents/plugins/marketplace.json for Codex and .claude-plugin/marketplace.json for Claude Code. Both point at the repo-root plugin, so keep them in sync when changing plugin metadata.
-
Set up the redirect URI in Spotify Developer Dashboard:
- Go to developer.spotify.com and open your app settings
- Under Redirect URIs, add:
http://127.0.0.1:8080/callback - Save the changes
- Open https://adsmanager.spotify.com/api-terms and make sure the ad account you want to use is selected. Accept the terms to authorize your client id to access your ad account through Ads API.
-
Configure OAuth credentials:
/spotify-ads-api:configureThis opens your browser for Spotify authorization, then saves your tokens locally with automatic refresh.
-
Create your first campaign:
/spotify-ads-api:build-campaign Create an audio campaign called Summer Promo targeting US listeners aged 25-44 with $100/day budget
The plugin supports three authentication modes:
Run /spotify-ads-api:configure or /spotify-ads-api:configure oauth. This launches an automated OAuth flow using a local Python script. Your tokens are stored locally and refresh automatically before API calls.
Run /spotify-ads-api:configure manual if Python is not available. You'll manually open the authorization URL, copy the redirect, and the plugin exchanges the code for tokens via curl.
Run /spotify-ads-api:configure token <your-token>. Accepts a pre-obtained access token. No automatic refresh — token expires in ~1 hour.
| Skill | Description |
|---|---|
/spotify-ads-api:configure |
Set up OAuth credentials, ad account, and preferences |
/spotify-ads-api:campaigns |
List, create, get, or update campaigns |
/spotify-ads-api:ads |
Manage ad sets and ads (list, create, get, update) |
/spotify-ads-api:campaign-strategy |
Plan API-ready campaign structure and targeting from a landing page, business brief, or creative assets |
/spotify-ads-api:build-campaign |
Create a full campaign hierarchy from a plain-text description |
/spotify-ads-api:report |
Pull aggregate metrics, audience insights, or async CSV reports |
/spotify-ads-api:assets |
Upload, list, and manage creative assets |
/spotify-ads-api:dashboard |
Quick performance overview of active campaigns |
/spotify-ads-api:monitor |
Diagnose pacing, delivery, stalled campaigns, and underdelivery issues |
/spotify-ads-api:export |
Export campaign hierarchy, targeting, budget, and optional metrics to CSV |
/spotify-ads-api:bulk |
Apply batch pause, resume, budget, delivery, archive, and creative-swap workflows |
/spotify-ads-api:clone |
Clone campaigns or ad sets with optional date, budget, name, or targeting changes |
The plugin includes an agent that interprets natural language requests automatically:
- "Create a campaign called Summer Sale with a reach objective"
- "Set up an audio ad targeting 18-34 year olds in the US with $50/day budget"
- "Show me impressions, spend, and clicks for all campaigns last month"
- "Pause the Summer Sale campaign"
- "Generate a CSV report of daily spend by campaign for January"
- "Build me a complete audio campaign targeting US listeners aged 25-44"
- "Plan the best Spotify campaign structure for this product page"
- "Use these creative assets to recommend targeting and ad sets"
- "Clone last quarter's campaign and move the dates to next month"
- "Export all campaigns with metrics for the last 30 days"
- "Check which active campaigns are underpacing"
- "Pause all active ad sets in the Summer Sale campaign"
- "Upload my-audio.mp3 as a creative asset"
- "How are my campaigns performing?"
Settings are stored in .codex/spotify-ads-api.local.md on Codex and .claude/spotify-ads-api.local.md on Claude. Each platform falls back to the other settings file if its preferred file does not exist. Both paths are gitignored.
| Field | Description | Default |
|---|---|---|
access_token |
OAuth2 bearer token | — |
refresh_token |
Token for automatic renewal | — |
token_expires_at |
ISO 8601 expiry timestamp | — |
client_id |
Spotify app client ID | — |
ad_account_id |
Default ad account UUID | — |
auto_execute |
Skip confirmation prompts | false |
The client secret is stored in the macOS Keychain (not in the settings file) for security. It is saved during /spotify-ads-api:configure and retrieved automatically by the token refresh hook.
"Token may be invalid or expired"
If using OAuth, the plugin auto-refreshes tokens. If the refresh token is also expired, re-run /spotify-ads-api:configure. If using direct token mode, obtain a new token and run /spotify-ads-api:configure token <new-token>.
"Ad account ID may be incorrect" Verify your ad account UUID. You can find it in the Spotify Ads Manager or by asking the plugin to list accounts after configuring a valid token.
"Settings file not found"
Run /spotify-ads-api:configure to create the settings file.
"Min audience threshold was not met" Your targeting is too narrow for the selected ad format. Try broadening the age range, adding more platforms, or switching from VIDEO to AUDIO format.
"Asset stuck in PROCESSING"
Large files may take longer to transcode. Check status with /spotify-ads-api:assets get <id>. If status is REJECTED, the file may not meet format requirements.
Copyright 2026 Spotify, Inc.
Licensed under the Apache License, Version 2.0: https://www.apache.org/licenses/LICENSE-2.0
Please report sensitive security issues via Spotify's bug-bounty program (https://hackerone.com/spotify) rather than GitHub.