Skip to main content
ClaudeWave
KuudoAI avatar
KuudoAI

amazon_ads_mcp

View on GitHub

Amazon Ads MCP - Model Context Protocol server for Amazon Advertising API

MCP ServersOfficial Registry59 stars17 forksPythonMITUpdated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
Last scanned: 6/11/2026
Install in Claude Code / Claude Desktop
Method: UVX (Python) · amazon_ads_mcp
Claude Code CLI
claude mcp add amazon-ads-mcp -- uvx amazon_ads_mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "amazon-ads-mcp": {
      "command": "uvx",
      "args": ["amazon_ads_mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Package name inferred from the repository name. Verify it exists on PyPI, or clone https://github.com/KuudoAI/amazon_ads_mcp and follow its README.
Use cases

MCP Servers overview

<div align="center">

# Amazon Ads API MCP SDK

**Build AI-powered advertising applications with the Model Context Protocol (MCP) SDK for Amazon Advertising API**

*Made with ❤️ + ☕ by [Openbridge](https://www.openbridge.com/)*

[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![CI](https://github.com/KuudoAI/amazon_ads_mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/KuudoAI/amazon_ads_mcp/actions/workflows/ci.yml)

**MCP registry id** (for clients and catalogs that display a stable package name): `io.github.KuudoAI/amazon_ads_mcp`

</div>

## Table of contents

- [What are MCP tools?](#what-are-mcp-tools)
- [What is Amazon Ads API MCP SDK?](#what-is-amazon-ads-api-mcp-sdk)
- [Quick start](#quick-start)
- [Installation](#installation)
- [Configuration](#configuration) (auth, packages, profiles, regions)
- [Downloading reports and exports](#downloading-reports-and-exports)
- [Example MCP client (Claude Desktop)](#example-mcp-client-connect-claude-desktop)
- [Context limits](#context-limits-and-active-mcp-server-tools)
- [Code mode](#code-mode)
- [Tool audit](#tool-audit)
- [Background tasks](#background-tasks)
- [Troubleshooting](#troubleshooting)
- [Documentation map](#documentation-map)

## What Are MCP Tools?
Think of MCP (Model Context Protocol) as a translator between an AI model and outside systems (like Amazon Ads). Each MCP tool is like a remote control button that tells the AI how to interact with Amazon Ads. Without MCP tools, the AI would have no idea how to “talk” to Amazon Ads.

With MCP tools:
* The AI knows the exact endpoints to call.
* The AI can request campaign reports, budgets, or targeting data safely.
* Everything is structured, so the AI doesn’t break things by making random guesses.

👉 In short: MCP tools = a safe, well-labeled toolkit that lets AI work with the [Amazon Ads API](https://advertising.amazon.com/API/docs/en-us).

<a id="what-is-amazon-ads-api-mcp-sdk"></a>

## 🚀 What is Amazon Ads API MCP SDK?

The Amazon Ads API MCP SDK is an open-source implementation that provides a robust foundation for creating AI-powered advertising tools, chatbots, and automated services.

### ✨ Key Features

- **🔌 MCP Integration**: Full Model Context Protocol compliance for AI application integration
- **🌍 Multi-Region Support**: NA, EU, and FE region endpoints with automatic routing
- **📊 Comprehensive API Coverage**: Campaigns, profiles, reporting, DSP, AMC workflows, and more
- **📝 Type Safety**: Full Pydantic model support with comprehensive type hints
- **🧪 Production Ready**: Includes testing, validation, and error handling

## 🎯 Use Cases

### Claude Desktop Integration
- **Campaign Management**: Ask Claude to create, update, or analyze campaigns
- **Performance Insights**: Get AI-powered analysis of your advertising performance
- **Budget Optimization**: Let Claude suggest budget adjustments based on performance
- **Creative Testing**: Get recommendations for ad creative improvements
- **Reporting**: Generate custom reports and insights on demand

### AI Applications
- **Marketing Chatbots**: Build conversational AI that can manage Amazon Ads campaigns
- **Automated Reporting**: AI-powered insights and performance analysis
- **Smart Budget Management**: Intelligent budget optimization using AI
- **Creative Optimization**: AI-driven ad creative testing and optimization

### Enterprise Services
- **Marketing Automation Platforms**: Integrate Amazon Ads into existing marketing tools
- **Agency Management Systems**: Multi-client, multi-account advertising management
- **E-commerce Integrations**: Connect Amazon Ads with e-commerce platforms
- **Analytics Dashboards**: Real-time advertising performance monitoring

### Developer Tools
- **API Wrappers**: Create custom SDKs for specific use cases
- **Testing Frameworks**: Automated testing for Amazon Ads integrations
- **Development Tools**: Local development and debugging utilities


## Why this Ads MCP is different

Other Amazon Ads MCPs do happy path. They fall apart the moment an agent makes a reasonable mistake and Amazon's Ads API has more reasonable mistakes than almost any other large API surface. The v1 reporting catalog uses a different vocabulary than v3. The docs are scattered across migration generations. The same field can have three plausible names depending on which tutorial an agent or human was trained on.

### You've felt this before

You know the symptoms even if you've never thought of them as a single problem:

- "Compacting conversation…" right when you were getting somewhere
- "Usage limit reached" mid-task, with nothing to show for the tokens
- "Context window exceeded" start over, re-explain everything
- The agent quietly forgetting the fix it figured out three turns ago
- Five tool calls, four of them retries, none of them progress
- Re-pasting the same error into the chat for the third time

That's not the model being dumb. That's the **API surface burning context** vague errors trigger thrashing, thrashing fills the window, the window fills and everything useful gets evicted. Anywhere from 4 to 12 round-trips for an agent: wrong field names, wrong body shape, wrong filter operator, wrong date placement, wrong advertiser-account format.

### Here, the wrong moves return the right move

This server is built around a different premise: **the error surface is the documentation surface.** Every failure is a teaching opportunity, and the server is engineered to make the next attempt smarter than the last one, for the same agent or the next one, without retraining, prompt updates, or memory tricks.

- The server tells you what went wrong, and *why* you got it wrong
- Every failure converts to a corrective action — the model just reads the hint and moves on
- A five-tool-call debugging arc collapses into a two-call corrected one
- The same mistake a week later doesn't re-burn context, because the validator, alias table, and deprecated-shape table are still right there
- No out-of-context tribal knowledge to forget

Every failure is cheaper than the last. Every agent learns from the same authoritative source. Every retry has direction. That compounding is what a smart agent solution looks like in practice.

### Everything is an edge case, you can help

We won't catch every edge case. Amazon's API surface is enormous, the migration history is messy, and real-world failures get more creative than anything anyone can anticipate. What we're committing to is the **strategy** that errors should teach, that documentation should live in the surfaces agents actually touch, that every wrong move should make the next move easier.

If you hit a failure where the envelope didn't help; vague hint, wrong suggestion, no hint at all, that's exactly the feedback we want. **Open an issue, paste the envelope, tell us what you expected.** The strategy is only as good as the cases it covers.

## Quick start

**Prerequisites:** [Docker](https://docs.docker.com/get-started/) (recommended), Python 3.10+ if you run from source, and [Amazon Ads API access](https://advertising.amazon.com/API/docs/en-us/guides/get-started/overview) (your own developer app or a partner such as Openbridge).

1. `git clone https://github.com/KuudoAI/amazon-ads-mcp.git && cd amazon-ads-mcp`
2. `cp .env.example .env` and add credentials (see [Configuration](#configuration)).
3. `docker compose up -d`
4. Connect your MCP client to `http://localhost:<PORT>/mcp/` — `.env.example` sets **`PORT=9080`** (override in `.env` if needed).

OAuth steps, client JSON samples, and a full variable reference: [Configuration](#configuration) below, [**INSTALL.md**](INSTALL.md), and [**AGENTS.md**](AGENTS.md).

## 📚 What Is Included In the Amazon Ads MCP?
The MCP server mirrors broad coverage of the Amazon Ads API surface. Each enabled package maps to a set of API operations. That includes [Campaign Management (Amazon Ads API v1)](https://advertising.amazon.com/API/docs/en-us/guides/campaign-management/overview), [Exports](https://advertising.amazon.com/API/docs/en-us/guides/exports/overview), [Amazon Marketing Cloud](https://advertising.amazon.com/API/docs/en-us/guides/amazon-marketing-cloud/overview), and many more.

Here is a representative list of the various Amazon API services in the MCP:

- Accounts
- Audiences
- Reporting
- Brand metrics
- Sponsored Products
- Sponsored Brands
- Sponsored Display
- Amazon DSP
- Amazon Attribution
- Recommendations & insights
- Creatives
- Change history
- Data provider
- Products
- Unified pre-moderation
- Moderation
- Amazon Marketing Stream
- Locations
- Exports
- Media Planning
- Amazon Ads API v1

### 🧪 Amazon Ads API v1

The Amazon Ads API v1 represents a reimagined approach to the Amazon Ads API, built from the ground up to provide a seamless experience across all Amazon advertising products through a common model. One major benefit of this common model is improved compatibility with code generation tools such as client library generators.

> **⚠️ Beta Notice**: These APIs are currently in beta at Amazon. Features and endpoints may change. Use in production with caution.

| Package Name | Description | Prefix |
|-------------|-------------|--------|
| `ads-api-v1-all` | Ads API v1 merged ALL surface | `allv1_` |
| `ads-api-v1-sp` | Sponsored Products v1 | `spv1_` |
| `ads-api-v1-sb` | Sponsored Brands v1 | `sbv1_` |
| `ads-api-v1-dsp` | Amazon DSP v1 | `dspv1_` |
| `ads-api-v1-sd` | Sponsored Display v1 | `sdv1_` |
| `ads-api-v1-st` | Sponsored Television v1 | `stv1_` |
| `ads-api-v1-beta` | Ads API v1 merged BETA surface | `beta_` |

To activate Ads API v1 packages, add them to your `AMAZON_AD_API_PACKAGES` environment variable:

```bash
# Example: Enable the merged Ads API v1 ALL surface
AMAZON_AD_API_PACKAGES="profiles,ads-api-v1-all"
```

For more information,
amazonamazon-adsamazon-ads-apiamazon-ads-mcpamazon-advertisingamazon-advertising-api

What people ask about amazon_ads_mcp

What is KuudoAI/amazon_ads_mcp?

+

KuudoAI/amazon_ads_mcp is mcp servers for the Claude AI ecosystem. Amazon Ads MCP - Model Context Protocol server for Amazon Advertising API It has 59 GitHub stars and was last updated today.

How do I install amazon_ads_mcp?

+

You can install amazon_ads_mcp by cloning the repository (https://github.com/KuudoAI/amazon_ads_mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is KuudoAI/amazon_ads_mcp safe to use?

+

Our security agent has analyzed KuudoAI/amazon_ads_mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains KuudoAI/amazon_ads_mcp?

+

KuudoAI/amazon_ads_mcp is maintained by KuudoAI. The last recorded GitHub activity is from today, with 3 open issues.

Are there alternatives to amazon_ads_mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy amazon_ads_mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: KuudoAI/amazon_ads_mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/kuudoai-amazon-ads-mcp)](https://claudewave.com/repo/kuudoai-amazon-ads-mcp)
<a href="https://claudewave.com/repo/kuudoai-amazon-ads-mcp"><img src="https://claudewave.com/api/badge/kuudoai-amazon-ads-mcp" alt="Featured on ClaudeWave: KuudoAI/amazon_ads_mcp" width="320" height="64" /></a>

More MCP Servers

amazon_ads_mcp alternatives