How to Automate Amazon Ads with Claude AI and MCP — Workflows, Tools, and Real Results
Nikhil Tiwari
MCP Playground
📖 TL;DR — Key Takeaways
- Amazon launched an official MCP server in open beta on February 2, 2026 — compatible with Claude, ChatGPT, Gemini, and Amazon Q
- 50+ tools spanning Sponsored Products, Sponsored Brands, Sponsored Display, DSP, and Amazon Marketing Cloud
- Tool prefixes:
cp_campaigns,sp_Sponsored Products,dsp_DSP,amc_AMC workflows,ac_profiles - End-to-end Sponsored Products campaign creation in a single prompt — replaces 15–20 minutes of manual setup
- Mid-sized brands report 8-hour weekly reporting tasks dropping to 45 minutes and ACOS reductions of 12%+
Amazon PPC management is a full-time job that never actually ends.
Between harvesting search terms from Auto campaigns, adjusting bids across hundreds of ASINs, pulling performance reports, expanding to new marketplaces, and running Amazon Marketing Cloud queries — a serious seller or agency can easily spend 15–20 hours a week on operational work that a well-configured AI agent should be handling.
That window just closed. On February 2, 2026, Amazon Ads officially launched its MCP server into open beta, giving any Amazon Ads API partner the ability to connect Claude — or any other MCP-compatible AI — directly to their live ad account data. The integration goes both ways: Claude can read performance data and act on it, creating campaigns, adjusting bids, running AMC analytics, and expanding to new marketplaces, all from a natural language conversation.
This guide covers every setup option, the complete tool surface, and five concrete workflows you can run starting today.
What Is the Amazon Ads MCP Server?
The Amazon Ads MCP server is Amazon's official implementation of the Model Context Protocol — the open standard that lets AI models connect to external tools and data sources with live, authenticated access.
It works as a translation layer between your AI agent and the Amazon Ads API. When you send Claude a natural language prompt, the MCP server converts it into structured API calls, executes them against your live ad account, and returns the results — all within your conversation. No CSV exports, no Seller Central tab-switching, no manual report downloads.
The key architectural distinction from most ad platform integrations: Amazon built its tools as orchestrated workflows, not just raw API wrappers. A tool like "create Sponsored Products campaign" handles the full multi-step operation — campaign, ad group, and ad creation — in a single action. The tools reduce complexity by orchestrating complete, multi-step operations that are core to everyday advertising workflows.
📅 Timeline
November 2025: Closed beta launch | February 2, 2026: Open beta — globally available to all Amazon Ads API partners. Covered at launch by AdExchanger, Digiday, Adweek, and Marketing Dive.
Three Server Options Compared
You have three routes to connect Claude to Amazon Ads, each with different trade-offs on setup complexity, tool depth, and authentication overhead.
1. Official Amazon Ads MCP Server
Amazon's own implementation. Covers the full ad stack: Sponsored Products, Sponsored Brands, Sponsored Display, DSP, Amazon Marketing Cloud, Amazon Attribution, and account management. Requires existing Amazon Ads API partner credentials. Available globally; region is auto-routed based on your advertiser profile (NA, EU, FE).
Best for: Agencies and brands already integrated with the Amazon Ads API who want the deepest, most complete toolset.
2. KuudoAI — KuudoAI/amazon_ads_mcp
The strongest community implementation. Two authentication options: bring your own Amazon developer app credentials (full control), or use Openbridge's pre-configured OAuth gateway (faster setup, minimal configuration). Covers the same major categories as the official server. Actively maintained with clean documentation.
Best for: Developers wanting flexibility on auth — especially teams already using Openbridge for Amazon data pipelines.
3. MarketplaceAdPros — Easiest Setup
The zero-friction path. Get a token from MarketplaceAdPros, paste it into your config — done. Covers Sponsored Products, Sponsored Brands, and Sponsored Display campaigns, ad groups, keywords, product ads, and targeting. A premium subscription unlocks recommendations, experiments, and advanced features. Hosted MCP endpoint means no local server to maintain.
Best for: Sellers and smaller agencies who want to start in under 5 minutes without setting up Amazon API credentials.
| Server | DSP + AMC | Setup | Best For |
|---|---|---|---|
| Official Amazon | ✅ Full | 🟡 Medium | API partners, agencies |
| KuudoAI | ✅ Full | 🟡 Medium | Developers, Openbridge users |
| MarketplaceAdPros | ❌ SP/SB/SD only | 🟢 Very easy | Sellers, small agencies |
Full Tool Surface by Category
The Amazon Ads MCP server organizes its tools by prefix — each prefix maps to a specific area of the ad stack. Here's what Claude can access:
ac_ — Account & Profiles
List and get advertiser profiles, set active profile context, search across large multi-account setups. Region auto-routing (NA / EU / FE).
cp_ — Campaigns
Full CRUD: cp_listCampaigns, cp_getCampaign, cp_createCampaign, cp_updateCampaign, cp_archiveCampaign. Cross-product campaign management.
sp_ — Sponsored Products
sp_listProductAds, sp_createKeywords, sp_updateBids, sp_getNegativeKeywords. Full ad and keyword management including bid adjustments.
dsp_ — Amazon DSP
Advertiser management, audience operations, conversion tracking, target KPI recommendations. Read-heavy with write for setup and audience configuration.
amc_ — Amazon Marketing Cloud
amc_listWorkflows, amc_executeWorkflow, amc_getWorkflowStatus. Execute SQL analytics workflows without writing SQL — Claude handles query generation.
📊 Reporting
request_and_download_report, brand-metrics, brand-benchmarks, list_downloads, get_download_url. Async report generation with server-side storage and retrieval.
🌍 Audiences & Attribution
Audience discovery, insights, personas. Amazon Attribution for cross-channel tracking. Media planning, forecasting, and creative/asset management.
🌐 Geo & Expansion
Account expansion workflows for launching campaigns in new countries. Locale management, billing, and multi-marketplace budget settings.
💡 Package loading
Tools load via the AMAZON_AD_API_PACKAGES environment variable as a comma-separated list. Example: "profiles,amc-workflow,ads-api-v1-sp,ads-api-v1-sb". Load only what you need to keep Claude's tool context focused and reduce API overhead.
Setup Guide
Path 1 — Easiest: MarketplaceAdPros (Under 5 Minutes)
- Go to marketplaceadpros.com and create an account
- Connect your Amazon Ads account and receive your bearer token
- Add to your Claude Desktop config:
{
"mcpServers": {
"amazon-ads": {
"command": "npx",
"args": ["-y", "@marketplaceadpros/amazon-ads-mcp-server"],
"env": {
"BEARER_TOKEN": "your_token_here"
}
}
}
}
Or use the hosted endpoint directly: https://app.marketplaceadpros.com/mcp
Path 2 — KuudoAI with Openbridge (15–20 Minutes)
If you use Openbridge for Amazon data, this is the fastest path to the full tool surface including DSP and AMC.
git clone https://github.com/KuudoAI/amazon_ads_mcp
cd amazon_ads_mcp
pip install -r requirements.txt
# Add to Claude Desktop config
{
"mcpServers": {
"amazon-ads-mcp": {
"command": "python",
"args": ["/path/to/amazon_ads_mcp/server.py"],
"env": {
"AMAZON_AD_API_ACCESS_TOKEN": "your_openbridge_token",
"AMAZON_AD_API_PACKAGES": "profiles,ads-api-v1-sp,amc-workflow,reporting-version-3"
}
}
}
}
Path 3 — Official Amazon Server (30–60 Minutes)
Prerequisites: Active Amazon Ads API partner credentials (Login with Amazon OAuth, client ID, client secret, refresh token)
Apply for Amazon Ads API access at advertising.amazon.com/API if you don't already have credentials. Once approved:
{
"mcpServers": {
"amazon-ads": {
"command": "python",
"args": ["-m", "amazon_ads_mcp"],
"env": {
"AMAZON_AD_API_CLIENT_ID": "your_client_id",
"AMAZON_AD_API_CLIENT_SECRET": "your_client_secret",
"AMAZON_AD_API_REFRESH_TOKEN": "your_refresh_token",
"AMAZON_AD_API_PACKAGES": "profiles,ads-api-v1-sp,ads-api-v1-sb,dsp,amc-workflow"
}
}
}
}
⚠️ Test before going live
Always connect to a test advertiser profile first. Amazon Ads API write operations are live — a campaign creation or bid change executes immediately. Use a sandbox account or low-spend test profile until you've validated each workflow.
Workflow 1: Full Account ACOS Audit (What Used to Take a Morning)
ACOS (Advertising Cost of Sale) analysis across a multi-ASIN account is the kind of work that eats entire mornings. You need to cross-reference campaign spend against attributed sales, segment by campaign type, identify outliers, and build a prioritized action list — all before you can make a single change.
Claude does this in under a minute.
You:
"Pull a full ACOS breakdown for all active campaigns over the last 30 days. Group by campaign type (Sponsored Products, Sponsored Brands, Sponsored Display). Flag anything with ACOS above 35% and spend over $200. Rank by wasted spend, highest first."
Claude: [Calls cp_listCampaigns, requests reporting-version-3 data, cross-references attributed sales]
"ACOS audit — last 30 days across 34 active campaigns:
🔴 HIGH ACOS + HIGH SPEND (Immediate Action):
— 'SP — Auto — Kitchen Accessories' — ACOS 61%, $847 spend, $523 attributed sales. Auto campaign likely pulling broad unrelated queries. Harvest winners, pause poor performers.
— 'SP — Broad — Competitors' — ACOS 48%, $612 spend. Competitor conquesting rarely converts at scale on Amazon. Consider pausing or switching to exact match.
— 'SB — Video — ASIN Bundle' — ACOS 44%, $389 spend. Video creative showing high impressions but low CTR. Creative refresh likely needed.
✅ EFFICIENT (Protect + Scale):
— 'SP — Exact — Core Terms' — ACOS 12%, $1,240 spend, $10,333 sales. Budget-limited 18/30 days. Increase daily budget.
— 'SP — Exact — Long-tail Branded' — ACOS 8%, $340 spend. Highest efficiency. Scale aggressively.
Total identifiable waste from high-ACOS campaigns: $1,848/month at current spend rate."
A senior PPC manager doing this manually would need 2–3 hours. The same analysis with Claude takes 45 seconds.
Workflow 2: Auto-to-Manual Keyword Harvesting
Auto campaigns are Amazon's discovery engine — they find search terms you would never think to target. The problem is extracting those winners and promoting them to manual Exact Match campaigns before budget bleeds on terms you've already proven convert.
Doing this manually means downloading the search term report, filtering by conversion and spend thresholds, cross-checking against your existing exact match keyword list, and then adding the new keywords one by one. For a 50-ASIN account, that's 3–4 hours every two weeks.
You:
"Pull search term data from all Auto campaigns for the last 60 days. Find terms with 2+ orders and ACOS below 25% that are not already in my Exact Match campaigns. These are my harvest candidates. Group them by parent ASIN."
Claude: [Requests search term report, cross-references against sp_listKeywords for existing exact match coverage]
"Found 23 harvest-ready search terms across 8 ASINs. Top candidates by order volume:
ASIN B08XYZ123 (Stainless Steel Water Bottle):
— 'insulated water bottle 32oz' — 14 orders, ACOS 11%, $4.20 avg CPC. Not in exact match.
— 'leak proof water bottle for gym' — 8 orders, ACOS 19%. Not in exact match.
— 'bpa free water bottle stainless' — 6 orders, ACOS 22%. Not in exact match.
ASIN B09ABC456 (Silicone Phone Case):
— 'shockproof iphone 15 case' — 11 orders, ACOS 16%. Not in exact match.
— 'clear phone case with magsafe' — 7 orders, ACOS 21%. Not in exact match.
Shall I add these 23 terms as Exact Match keywords to the corresponding manual campaigns and add them as negatives to the Auto campaigns to prevent cannibalization?"
One confirmation. 23 keywords harvested, added to manual campaigns, and negated from Auto campaigns — a process that previously took half a day done in 90 seconds.
Workflow 3: Marketplace Expansion
Expanding a successful US product to UK, DE, or CA Amazon marketplaces normally requires: translating copy, setting up new campaigns from scratch in Seller Central, configuring currency-appropriate bids, and waiting weeks to gather enough data. Most sellers delay this for months because the setup overhead is too high.
The Amazon Ads MCP server includes built-in orchestrated workflows specifically for marketplace expansion — one of its flagship capabilities at launch.
You:
"I want to expand my top 5 US Sponsored Products campaigns to the UK marketplace. Pull the structure and top keywords from each US campaign, adapt bid levels to UK CPCs (our UK account shows avg CPC ~40% lower than US), and create mirror campaigns in the UK advertiser profile. Flag any ASINs that aren't live on Amazon UK."
Claude: [Sets UK advertiser profile via ac_setProfile, reads US campaign structure, executes account expansion workflow]
"Expansion plan for UK marketplace — 5 campaigns:
3 campaigns ready to create:
— 'SP — Exact — Core Terms UK' — 34 keywords transferred, bids adjusted to £0.48–£1.20 range (vs $0.85–$2.10 US). Daily budget: £45.
— 'SP — Auto — Discovery UK' — Auto targeting, £30/day budget. Will self-optimize for UK search patterns.
— 'SP — Branded — UK' — 12 brand keywords, defensive targeting, £15/day.
⚠️ 2 campaigns blocked:
— 'SP — Bundle ASIN B09DEF' — ASIN not live on Amazon.co.uk. List the product first, then this campaign can be created.
— 'SP — Seasonal Q4' — Recommend waiting until Q3 to create seasonal UK campaigns for relevance timing.
Ready to create the 3 approved campaigns in the UK profile?"
What typically takes 3–4 days of Seller Central setup across two marketplaces: completed review-ready in 2 minutes.
Workflow 4: Amazon Marketing Cloud Analytics — SQL-Free
Amazon Marketing Cloud (AMC) is one of the most powerful data tools in Amazon's ecosystem — a privacy-safe data clean room where you can run SQL queries across your ad exposure, purchase, and streaming data to get attribution insights unavailable anywhere else.
The problem: AMC requires SQL. Most sellers and even many agencies don't have the technical resources to write AMC queries consistently, so the tool sits underused.
With the amc_ tools, Claude writes and executes AMC workflows for you in plain English.
You:
"Run an AMC overlap analysis: what percentage of customers who saw my Sponsored Products ads also saw my DSP display ads before purchasing? I want to understand if my full-funnel approach is working or if one channel is doing all the work."
Claude: [Calls amc_listWorkflows, builds overlap analysis workflow, executes via amc_executeWorkflow, polls amc_getWorkflowStatus]
"AMC multi-touch overlap analysis — last 90 days:
Purchase attribution breakdown:
— Sponsored Products only: 54% of conversions ($41,200 revenue)
— DSP Display only: 9% of conversions ($6,840 revenue)
— Both SP + DSP touchpoints before purchase: 37% of conversions ($28,200 revenue)
Key insight: Customers exposed to both channels converted at 2.3x the rate of SP-only exposure. The 37% overlap segment has an average order value $18 higher than single-channel customers.
Recommendation: Your full-funnel approach is working. The DSP spend is genuinely driving incremental lift — not just crediting purchases that would have happened anyway via SP. Consider increasing DSP retargeting budget for the top-performing SP audience segments."
This is attribution intelligence that would previously require an AMC-certified analyst and a week of query development. With Claude, it's a 90-second conversation.
Workflow 5: Bid and Budget Optimization
Bids and budgets on Amazon drift. A keyword that deserved a $1.50 bid three months ago might now warrant $0.90 — or $2.20 — depending on what's happened to your conversion rate, competitor activity, and seasonal demand. Most accounts run on stale bids because the manual process of reviewing and adjusting hundreds of keywords across dozens of campaigns is just too slow.
You:
"Review all Exact Match keywords in my manual SP campaigns with more than 50 clicks in the last 30 days. For any keyword where ACOS is above 30%, reduce the bid by 15%. For any keyword with ACOS below 12% and fewer than 3 orders, increase the bid by 20% to capture more volume. Show me the full change list before applying."
Claude: [Pulls sp_listKeywords, requests performance data, calculates bid adjustments, stages changes for review]
"Bid adjustment plan — 89 keywords reviewed, 31 changes staged:
Reductions (ACOS > 30%) — 19 keywords:
— 'stainless water bottle' — current $1.80, new $1.53 (-15%). ACOS 41%, 234 clicks.
— 'gym water bottle large' — current $2.10, new $1.79 (-15%). ACOS 38%, 187 clicks.
— 'water bottle with straw' — current $1.45, new $1.23 (-15%). ACOS 35%, 92 clicks.
[+ 16 more keywords with similar pattern]
Increases (ACOS < 12%, < 3 orders) — 12 keywords:
— 'insulated bottle 40oz stainless' — current $0.75, new $0.90 (+20%). ACOS 9%, 2 orders.
— 'bpa free gym bottle' — current $0.55, new $0.66 (+20%). ACOS 11%, 1 order.
[+ 10 more keywords]
Estimated monthly impact: ~$280 in reduced wasted spend, potential +$420 in incremental revenue from volume increases.
Apply all 31 changes?"
Verified Results: What Sellers Are Reporting
These numbers come from published sources, not projections.
8h → 45m
Weekly reporting time for a mid-sized beauty brand with 500+ SKUs
-12%
ACOS reduction in Q1 after implementing MCP-assisted optimization workflows
3×
Increase in campaign management capacity without additional headcount
78%
Faster reaction time to competitor bid changes with live data monitoring
What Claude Cannot Do (Be Realistic)
❌ Cannot access organic rank data
The Amazon Ads API covers paid data only. Organic rank, BSR movement, and review velocity require separate tools (Jungle Scout, Helium 10 MCP integrations).
❌ Cannot see competitor bids directly
Impression share and top-of-search placement data are available, but competitor bid amounts are not exposed through any Amazon API.
❌ Requires API partner status
The official Amazon server requires an approved Amazon Ads API partner application. MarketplaceAdPros bypasses this but adds a dependency on their token service.
❌ Cannot guarantee ACOS improvements
Claude surfaces data-backed optimization opportunities, but results depend on product listing quality, review count, pricing competitiveness, and category dynamics.
❌ AMC requires existing AMC instance
Amazon Marketing Cloud access requires a separate AMC subscription and data population. Claude can run AMC workflows but cannot set up the AMC instance itself.
❌ Attribution window differences
Amazon uses a 14-day attribution window by default for SP. Recent data (last 14 days) will understate conversions as attribution catches up — account for this in optimization decisions.
Combining Amazon Ads MCP with Other Servers
📦 Full E-Commerce Intelligence Layer
Amazon Ads MCP + Shopify MCP + Stripe MCP
→ Claude sees ad spend, Shopify storefront revenue, and Stripe subscription data
→ Calculates true blended ROAS including off-Amazon DTC sales from Amazon-driven discovery
📊 Cross-Platform Media Mix
Amazon Ads MCP + Meta Ads MCP + Google Ads MCP
→ Claude views ROAS across all three platforms simultaneously
→ Recommends budget shifts across the entire media mix — not just within Amazon
🔔 Weekly Performance Alerts
Amazon Ads MCP + Slack MCP
→ Claude monitors ACOS daily and alerts #amazon-ppc when any campaign breaches threshold
→ Alert includes campaign name, current ACOS, 7-day trend, and recommended action
📋 Client Reporting — Automated
Amazon Ads MCP + Google Sheets MCP
→ Claude pulls weekly performance data across all managed accounts every Monday
→ Formats into client reporting template in Google Sheets — 3 hours → 5 minutes
Getting Started Today
If you're a seller (non-technical):
- Go to marketplaceadpros.com — connect your Amazon account and get a token (5 min)
- Install Claude Desktop
- Add the config JSON above and restart Claude Desktop
- Start with: "List all my Amazon advertiser profiles" to confirm the connection works
- Run the ACOS audit workflow — you'll have your first action list in under 2 minutes
If you're an agency or developer:
- Use KuudoAI with Openbridge if you want the full DSP + AMC surface with minimal credential overhead
- Or apply for Amazon Ads API credentials at advertising.amazon.com/API for the official server
- Start with the
profilesandads-api-v1-sppackages — addamc-workflowanddsponce the basics are working - Test keyword harvesting on a single ASIN first before running account-wide bid changes
Want to explore MCP before committing?
Go to MCP Playground Online — connect any MCP server URL in your browser to inspect its tools and test queries without any local setup.
The Shift That's Happening
Amazon's MCP server launch is not a minor product update. It's a signal that the company is betting on AI agents as the primary interface for advertising management — not dashboards, not CSV exports, not manual workflows in Seller Central.
The Amazon Ads API has always contained the full data and action surface. What's new is that MCP makes that surface directly accessible to frontier AI models without any custom integration work. A seller who connects Claude to Amazon Ads today gets the same programmatic access that enterprise brands have spent years and engineering resources building — in 5 minutes.
The early adopter window on this is genuinely narrow. When every competitor is running the same automated bid optimization and keyword harvesting workflows, the edge disappears. The brands building systematic AI-assisted advertising operations now will have structural advantages that compound over time.
The Amazon Ads MCP server is an open beta product. Features, tool availability, and pricing are subject to change. Always verify campaign changes before applying — write operations execute against live accounts immediately. Test with a low-spend profile before connecting to your primary ad account.
Resources:
- Amazon Ads MCP Server — Official Announcement
- KuudoAI/amazon_ads_mcp — Community server with Openbridge auth
- MarketplaceAdPros/amazon-ads-mcp-server — Easiest setup, hosted endpoint
- Amazon Ads MCP API Documentation — Official developer guide
- MCP Playground Online — Test MCP servers in your browser
Written by Nikhil Tiwari
15+ years in product development. AI enthusiast building developer tools that make complex technologies accessible to everyone.
Related Resources