Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
cprice70 avatar

Amazonads MCP

  • 3 repo stars
  • Updated March 3, 2026
  • cprice70/amazonads-mcp

Amazon Ads MCP is a MCP server that manages Amazon Ads campaigns, keywords, bids, and performance reports via the official Ads API.

About

Amazon Ads MCP is a stdio Model Context Protocol server that wraps the Amazon Ads API so coding agents can list and adjust campaigns, keywords, bids, and pull performance reports without clicking through Seller Central for every change. Amazon sellers and ecommerce operators in the Grow phase use it to script bulk bid tweaks, audit keyword waste, and summarize report windows while pairing human judgment with agent-generated SQL-like command sequences. The npm package amazonads-mcp (v0.1.1) requires Amazon developer credentials plus a refresh token and supports regional routing via AMAZON_ADS_REGION. Skillselion places it under Grow → Analytics because its core value is measurable ad outcomes and operational tuning, not greenfield product builds or security audits. Setup is intermediate: you must complete Amazon’s ads API onboarding and store secrets locally. The server accelerates repetitive ads ops; it does not replace Amazon’s policy compliance review or strategic brand positioning. Compare it to generic marketing skills—here you get live API-shaped tools suitable for Claude Code or Cursor MCP panels.

  • Stdio npm package amazonads-mcp version 0.1.1
  • Amazon Ads API: campaigns, keywords, bids, and performance reports
  • OAuth-style setup via AMAZON_ADS_CLIENT_ID, CLIENT_SECRET, and REFRESH_TOKEN
  • Optional AMAZON_ADS_REGION for NA, EU, or FE ad endpoints
  • Repository cprice70/amazonads-mcp for seller-focused agent automation

Amazonads MCP by the numbers

  • Data as of Aug 10, 2026 (Skillselion catalog sync)
terminal
claude mcp add --env AMAZON_ADS_CLIENT_ID=YOUR_AMAZON_ADS_CLIENT_ID --env AMAZON_ADS_CLIENT_SECRET=YOUR_AMAZON_ADS_CLIENT_SECRET --env AMAZON_ADS_REFRESH_TOKEN=YOUR_AMAZON_ADS_REFRESH_TOKEN --env AMAZON_ADS_REGION=YOUR_AMAZON_ADS_REGION amazonads-mcp -- npx -y amazonads-mcp

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars3
Packageamazonads-mcp
TransportSTDIO
AuthRequired
Last updatedMarch 3, 2026
Repositorycprice70/amazonads-mcp

What it does

Manage Amazon Ads campaigns, keywords, bids, and performance reports from your agent while growing an FBA or seller brand.

Who is it for?

FBA and brand sellers who already have Amazon Ads API access and want agent-driven campaign housekeeping and reporting.

Skip if: Pre-launch products with no ad account, non-Amazon channels only, or teams unwilling to manage OAuth refresh tokens securely.

What you get

Once Amazon Ads OAuth env vars are set, your agent can call MCP tools to adjust bids and fetch performance reports programmatically.

  • MCP tools for campaigns, keywords, bids, and ads reports
  • Agent-scriptable Amazon PPC change workflows
  • Region-aware API calls when AMAZON_ADS_REGION is set

By the numbers

  • Package version 0.1.1
  • 4 core API surface areas named: campaigns, keywords, bids, performance reports
  • Up to 4 environment variables including optional NA/EU/FE region
README.md

Amazon Ads MCP Server

A Model Context Protocol (MCP) server that provides tools for interacting with the Amazon Advertising API. This server enables AI assistants to access and manage Amazon Ads campaigns, keywords, performance data, and more.

Features

This MCP server provides the following tools:

  • get_profiles: List all available Amazon Ads profiles/accounts
  • get_campaigns: Retrieve advertising campaigns with optional filtering by state and type
  • get_campaign_performance: Get performance metrics for campaigns (impressions, clicks, cost, sales)
  • get_keywords: Retrieve keywords for campaigns or ad groups
  • update_keyword_bid: Update bid amounts for specific keywords
  • create_campaign: Create new advertising campaigns
  • get_product_ads: Retrieve product ads for campaigns or ad groups

Prerequisites

  1. Amazon Ads Account: You need an active Amazon Ads account
  2. API Credentials: Register for Amazon Ads API access and obtain:
    • Client ID
    • Client Secret
    • Refresh Token

Getting Amazon Ads API Credentials

Step 1: Register Your Application
  1. Go to Amazon Advertising API
  2. Sign in with your Amazon Ads account
  3. Navigate to the Developer Center and create a new application
  4. You'll receive a Client ID and Client Secret - save these!
Step 2: Get Your Refresh Token

We provide a helper script to obtain your refresh token through the OAuth flow:

  1. Create a .env file in the project root:

    AMAZON_ADS_CLIENT_ID=your_client_id_here
    AMAZON_ADS_CLIENT_SECRET=your_client_secret_here
    
  2. Run the OAuth helper script:

    npm run get-token
    
  3. Your browser will open to Amazon's authorization page

  4. Sign in and authorize the application

  5. The script will display your refresh token - copy it to your .env file

Step 3: Note Your Region

Determine your advertising region:

  • NA: North America (amazon.com)
  • EU: Europe (amazon.co.uk, amazon.de, etc.)
  • FE: Far East (amazon.co.jp, etc.)

Installation

  1. Clone this repository:
git clone <your-repo-url>
cd amazonads-mcp
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration

Environment Variables

Create a .env file or set the following environment variables:

AMAZON_ADS_CLIENT_ID=your_client_id
AMAZON_ADS_CLIENT_SECRET=your_client_secret
AMAZON_ADS_REFRESH_TOKEN=your_refresh_token
AMAZON_ADS_REGION=NA  # Options: NA, EU, FE
AMAZON_ADS_SANDBOX=false  # Set to true for testing with sandbox API

Claude Desktop Configuration

Add this server to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "amazonads": {
      "command": "node",
      "args": ["/absolute/path/to/amazonads-mcp/build/index.js"],
      "env": {
        "AMAZON_ADS_CLIENT_ID": "your_client_id",
        "AMAZON_ADS_CLIENT_SECRET": "your_client_secret",
        "AMAZON_ADS_REFRESH_TOKEN": "your_refresh_token",
        "AMAZON_ADS_REGION": "NA"
      }
    }
  }
}

Usage Examples

Once configured in Claude Desktop, you can ask Claude to:

  • "Show me all my Amazon Ads campaigns"
  • "What are the performance metrics for campaign ID 12345 from Jan 1 to Jan 31?"
  • "List all keywords for campaign 12345"
  • "Update the bid for keyword 67890 to $1.50"
  • "Create a new Sponsored Products campaign with a $50 daily budget"
  • "Show me all product ads in campaign 12345"

Development

Project Structure

amazonads-mcp/
├── src/
│   ├── index.ts              # Main MCP server implementation
│   └── amazon-ads-client.ts  # Amazon Ads API client
├── build/                     # Compiled JavaScript output
├── package.json
├── tsconfig.json
└── README.md

Building

npm run build

Development Mode

Watch for changes and rebuild automatically:

npm run watch

Testing the Server

Run the server directly:

npm start

The server communicates over stdio and expects MCP protocol messages.

API Coverage

This server currently supports:

  • Sponsored Products: Full support for campaigns, keywords, and product ads
  • Sponsored Brands: Campaign management (partial support)
  • Sponsored Display: Campaign management (partial support)
  • Reporting: Basic performance metrics (simplified implementation)

Important Notes

  1. Rate Limiting: The Amazon Ads API has rate limits. The client does not currently implement rate limiting logic.

  2. Reporting API: The get_campaign_performance tool uses a simplified implementation. For production use, you should implement the full async reporting flow:

    • Create report request
    • Poll for report completion
    • Download and parse report
  3. Error Handling: API errors are returned to the caller. Ensure proper credential configuration to avoid authentication errors.

  4. Regions: Make sure to set the correct region (NA, EU, FE) based on your Amazon Ads account.

Security

  • Never commit your .env file or expose API credentials
  • Refresh tokens should be stored securely
  • Consider implementing credential rotation for production use

Resources

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Recommended MCP Servers

How it compares

Amazon Ads API MCP integration, not a creative copywriting skill or organic SEO playbook.

FAQ

Who is io.github.cprice70/amazonads-mcp for?

Independent Amazon sellers and small ecommerce teams who use AI agents for ads operations and want direct API access through MCP.

When should I use io.github.cprice70/amazonads-mcp?

Use it in Grow when you are optimizing live campaigns, tuning keywords and bids, or generating performance reports on a recurring basis.

How do I add io.github.cprice70/amazonads-mcp to my agent?

Add the amazonads-mcp npm stdio server to your MCP config with AMAZON_ADS_CLIENT_ID, AMAZON_ADS_CLIENT_SECRET, AMAZON_ADS_REFRESH_TOKEN, and optional AMAZON_ADS_REGION.

Data Analyticsdistribution

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.