Amazon Ads MCP Server
A Model Context Protocol Server that runs as stdio, pointing to MarketplaceAdPros for Amazon Ads integration and MCP integration
Description
A Model Context Protocol Server that runs as stdio, pointing to MarketplaceAdPros for Amazon Ads integration and MCP integration
Quick Install
npx @marketplaceadpros/amazon-ads-mcp-server
Installation
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`
### Env Vars
- `BEARER_TOKEN`: The Bearer token you got from MarketplaceAdPros.com
### Configuration
You can use it via `npx` in your Claude Desktop configuration like this:
```json
{
"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:
```json
{
"mcpServers": {
"marketplaceadpros": {
"command": "node",
"args": [
"/path/to/amazon-ads-mcp-server/build/index.js"
],
"env": {
"BEARER_TOKEN": "abcdefghijklmnop"
}
}
}
}
```
Stack & Dependencies
sdk
dotenv
Related Skills & MCPs
Frequently Asked Questions
What technologies does Amazon Ads MCP Server require?
This MCP server requires sdk and dotenv. Ensure these are available in your environment before configuring it with Claude Code.
How does Amazon Ads MCP Server communicate with Claude?
Amazon Ads MCP Server uses the streamable-http transport protocol to communicate with Claude Code via the Model Context Protocol.
How do I install Amazon Ads MCP Server?
You can install Amazon Ads MCP Server using npx: `npx @marketplaceadpros/amazon-ads-mcp-server`. Add it to your Claude Code MCP configuration to start using it.
Is Amazon Ads MCP Server free to use?
Amazon Ads MCP Server is completely free to use. You can download the configuration or copy it directly from the page.