Back to MCP Directory
Amazon Ads
Model Context Protocol moderate risk

Amazon Ads

Connects to Amazon Ads via MarketplaceAdPros, providing access to advertising resources and reports, with recommendations available via subscription.

Connections & Capabilities

Connects To

GitHub

Capabilities

readwrite

Quickstart

Install

npm install
```

Config

{
  "mcpServers": {
    "marketplaceadpros": {
      "command": "npx",
      "args": [
        "@marketplaceadpros/amazon-ads-mcp-server"
      ],
      "env": {
        "BEARER_TOKEN": "abcdefghijklmnop"
      }
    }
  }
}

Exposed MCP Tools (4)

safe
getCampaigns

Retrieves a list of advertising campaigns.

Read-only operation.

safe
getAdGroups

Retrieves a list of ad groups within a campaign.

Read-only operation.

high
updateCampaign

Modifies an existing advertising campaign.

Structural modification of ad campaigns.

moderate
createReport

Generates a report based on specified criteria.

Non-destructive write operation.

Safety Assessment

This server provides access to Amazon Ads data and allows for both read and write operations. While the connection is mediated through MarketplaceAdPros, the lack of explicit sandboxing and the potential for write operations necessitate careful management of the API token and user permissions. Using the streamable HTTP option and limiting access to read-only where possible can mitigate risks.

  • Access is mediated through MarketplaceAdPros.
  • Provides access to advertising data, which is generally considered less sensitive than other types of data.
  • Streamable HTTP option allows for centralized access control.
  • Read-only access is possible, limiting potential damage.
  • Requires an API token, which if compromised, could grant unauthorized access.
  • Write operations are possible, potentially leading to unintended modifications of ad campaigns.
  • No explicit sandboxing is mentioned, increasing the risk of unintended consequences.
  • The level of access control within MarketplaceAdPros is not fully detailed.