# io.github.cprice70/amazonads-mcp (npm · amazonads-mcp)

MCP server for Amazon Ads API - manage campaigns, keywords, bids, and performance reports

- Trust score: 70/100 (medium)
- Change this week: +24
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `amazonads-mcp`: 70/100 (this document), [markdown](https://verifymcp.io/servers/cprice70-amazonads-mcp/amazonads-mcp.md), [page](https://verifymcp.io/servers/cprice70-amazonads-mcp/amazonads-mcp)

## Channel facts

- Registry: `npm`
- Package: `amazonads-mcp`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 152 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 649 tokens (~72/item across 9 items; 9 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add cprice70-amazonads-mcp -- npx -y amazonads-mcp
```

### Codex

```bash
codex mcp add cprice70-amazonads-mcp -- npx -y amazonads-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "cprice70-amazonads-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "amazonads-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add cprice70-amazonads-mcp --command npx --arg -y --arg amazonads-mcp
```

### Hermes

```yaml
mcp_servers:
  cprice70-amazonads-mcp:
    command: "npx"
    args: ["-y", "amazonads-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "cprice70-amazonads-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "amazonads-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 70, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 69, +43)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 26, +20)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 6, −40)

- [security regression] Malware scan: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (9)

### `get_campaigns` (~90 tokens)

Retrieve a list of advertising campaigns from Amazon Ads. Optionally filter by campaign state (enabled, paused, archived) and campaign type (sponsoredProducts, sponsoredBrands, sponsoredDisplay).

Input parameters:

- `campaignType` (string): Optional: Filter by campaign type
- `profileId` (string, required): The Amazon Ads profile ID to query campaigns for
- `state` (string): Optional: Filter campaigns by state

### `get_campaign_performance` (~118 tokens)

Create a performance report for campaigns. Returns metrics like impressions, clicks, cost, sales. If the report takes more than 5 seconds to generate, returns a PENDING status with a reportId - use get_report to fetch the completed report.

Input parameters:

- `campaignId` (string, required): The campaign ID to get performance data for
- `endDate` (string, required): End date in YYYY-MM-DD format
- `profileId` (string, required): The Amazon Ads profile ID
- `startDate` (string, required): Start date in YYYY-MM-DD format

### `get_report` (~59 tokens)

Check status and download a previously requested report. Use this after get_campaign_performance returns PENDING status.

Input parameters:

- `profileId` (string, required): The Amazon Ads profile ID
- `reportId` (string, required): The report ID returned from get_campaign_performance

### `get_keywords` (~70 tokens)

Retrieve keywords for a specific campaign or ad group, including bid amounts and match types.

Input parameters:

- `adGroupId` (string): Optional: Filter keywords by ad group ID
- `campaignId` (string): Optional: Filter keywords by campaign ID
- `profileId` (string, required): The Amazon Ads profile ID

### `update_keyword_bid` (~55 tokens)

Update the bid amount for a specific keyword.

Input parameters:

- `bid` (number, required): The new bid amount
- `keywordId` (string, required): The keyword ID to update
- `profileId` (string, required): The Amazon Ads profile ID

### `get_profiles` (~25 tokens)

List all available Amazon Ads profiles (accounts) that the authenticated user has access to.

### `create_campaign` (~93 tokens)

Create a new advertising campaign in Amazon Ads.

Input parameters:

- `campaignType` (string, required): Type of campaign to create
- `dailyBudget` (number, required): Daily budget amount
- `name` (string, required): Campaign name
- `profileId` (string, required): The Amazon Ads profile ID
- `startDate` (string, required): Campaign start date in YYYY-MM-DD format
- `targetingType` (string, required): Targeting type for the campaign

### `get_product_ads` (~63 tokens)

Retrieve product ads for a specific campaign or ad group.

Input parameters:

- `adGroupId` (string): Optional: Filter by ad group ID
- `campaignId` (string): Optional: Filter by campaign ID
- `profileId` (string, required): The Amazon Ads profile ID

### `archive_campaign` (~76 tokens)

Archive a campaign. Archived campaigns cannot spend money and are hidden from default views. This is the only way to 'delete' a campaign in Amazon Ads.

Input parameters:

- `campaignId` (string, required): The campaign ID to archive
- `campaignType` (string, required): Type of campaign
- `profileId` (string, required): The Amazon Ads profile ID

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/cprice70-amazonads-mcp/amazonads-mcp#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 69
- 2026-08-01: 26
- 2026-07-31: 26
- 2026-07-30: 6
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/amazonads-mcp
- Socket report: https://socket.dev/npm/package/amazonads-mcp
- Repository: https://github.com/cprice70/amazonads-mcp
- Changelog RSS feed: https://verifymcp.io/servers/cprice70-amazonads-mcp/amazonads-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/cprice70-amazonads-mcp/amazonads-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/cprice70-amazonads-mcp/amazonads-mcp
