Skip to content
VS Code

amazon ads mcp for VS Code

io.github.tspicer/amazon_ads_mcp

Amazon Ads API MCP server for Amazon Advertising API

client:VS Code transport:stdio runtime:pypi

Install amazon ads mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "amazon-ads-auth-method",
      "description": "AMAZON_ADS_AUTH_METHOD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-ad-api-client-id",
      "description": "AMAZON_AD_API_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-ad-api-client-secret",
      "description": "AMAZON_AD_API_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-ad-api-refresh-token",
      "description": "AMAZON_AD_API_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-ad-api-profile-id",
      "description": "AMAZON_AD_API_PROFILE_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openbridge-refresh-token",
      "description": "OPENBRIDGE_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openbridge-api-key",
      "description": "OPENBRIDGE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openbridge-remote-identity-id",
      "description": "OPENBRIDGE_REMOTE_IDENTITY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-ads-region",
      "description": "AMAZON_ADS_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-ad-api-packages",
      "description": "AMAZON_AD_API_PACKAGES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "amazon-ads-download-auth-token",
      "description": "AMAZON_ADS_DOWNLOAD_AUTH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "amazon_ads_mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "amazon-ads-mcp"
      ],
      "env": {
        "AMAZON_ADS_AUTH_METHOD": "${input:amazon-ads-auth-method}",
        "AMAZON_AD_API_CLIENT_ID": "${input:amazon-ad-api-client-id}",
        "AMAZON_AD_API_CLIENT_SECRET": "${input:amazon-ad-api-client-secret}",
        "AMAZON_AD_API_REFRESH_TOKEN": "${input:amazon-ad-api-refresh-token}",
        "AMAZON_AD_API_PROFILE_ID": "${input:amazon-ad-api-profile-id}",
        "OPENBRIDGE_REFRESH_TOKEN": "${input:openbridge-refresh-token}",
        "OPENBRIDGE_API_KEY": "${input:openbridge-api-key}",
        "OPENBRIDGE_REMOTE_IDENTITY_ID": "${input:openbridge-remote-identity-id}",
        "AMAZON_ADS_REGION": "${input:amazon-ads-region}",
        "AMAZON_AD_API_PACKAGES": "${input:amazon-ad-api-packages}",
        "AMAZON_ADS_DOWNLOAD_AUTH_TOKEN": "${input:amazon-ads-download-auth-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

amazon ads mcp in other clients