Connect to your Amazon Advertising Data by integrating your account with MarketplaceAdPros. Provides access to: - Advertising Resources in Sponsored Products, Sponsored Brands and Sponsored Display, like Campaigns, Ad Groups, Keywords, Product Ads, Targeting - Reports and ability to query them with plain english. - Marketplace Ad Pros Recommendations, Experiments and more with purchased subscripti
Add this skill
npx mdskills install MarketplaceAdPros/amazon-ads-mcp-serverComprehensive Amazon Ads API integration with multiple deployment options and clear setup instructions
Connect to your Amazon Advertising Data by integrating your account with MarketplaceAdPros.
Provides access to:
Also available as a Streamable HTTP MCP Server by connecting to https://app.marketplaceadpros.com/mcp
To add the amazon-ads-mcp-server to your MCP client of choice, add the following to the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
BEARER_TOKEN: The Bearer token you got from MarketplaceAdPros.comYou can use it via npx in your Claude Desktop configuration like this:
{
"mcpServers": {
"marketplaceadpros": {
"command": "npx",
"args": [
"@marketplaceadpros/amazon-ads-mcp-server"
],
"env": {
"BEARER_TOKEN": "abcdefghijklmnop"
}
}
}
}
Or, if you clone the repo, you can build and use in your Claude Desktop configuration like this:
{
"mcpServers": {
"marketplaceadpros": {
"command": "node",
"args": [
"/path/to/amazon-ads-mcp-server/build/index.js"
],
"env": {
"BEARER_TOKEN": "abcdefghijklmnop"
}
}
}
}
Or, if your client supports the Streamable HTTP MCP Servers, you can just point to the MCP endpoint at https://app.marketplaceadpros.com/mcp.
{
"mcpServers": {
"marketplaceadpros": {
"type": "streamable-http",
"url": "https://app.marketplaceadpros.com/mcp"
}
}
}
Or, configure in LibreChat like:
MAP:
type: streamable-http
url: https://app.marketplaceadpros.com/mcp
headers:
Authorization: "Bearer abcdefghijklmnop"
Install dependencies:
npm install
Build the server:
npm run build
For development with auto-rebuild:
npm run watch
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.
Install via CLI
npx mdskills install MarketplaceAdPros/amazon-ads-mcp-serverAmazon Ads MCP Server is a free, open-source AI agent skill. Connect to your Amazon Advertising Data by integrating your account with MarketplaceAdPros. Provides access to: - Advertising Resources in Sponsored Products, Sponsored Brands and Sponsored Display, like Campaigns, Ad Groups, Keywords, Product Ads, Targeting - Reports and ability to query them with plain english. - Marketplace Ad Pros Recommendations, Experiments and more with purchased subscripti
Install Amazon Ads MCP Server with a single command:
npx mdskills install MarketplaceAdPros/amazon-ads-mcp-serverThis downloads the skill files into your project and your AI agent picks them up automatically.
Amazon Ads MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.