@ppcassist/amazon-ads-mcp 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/setup.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ppcassist/amazon-ads-mcp",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Local MCP proxy for Amazon Ads API - authenticates and forwards requests to Amazon's official MCP server",
5
5
  "main": "index.js",
6
6
  "bin": {
package/setup.js CHANGED
@@ -262,7 +262,7 @@ async function main() {
262
262
  const redirectUri = `${REDIRECT_URI_BASE}:${port}${CALLBACK_PATH}`;
263
263
  const authUrl =
264
264
  `${OAUTH_AUTHORIZE_URL}?client_id=${encodeURIComponent(clientId)}` +
265
- `&scope=advertising::campaign_management` +
265
+ `&scope=cpc_advertising:campaign_management` +
266
266
  `&response_type=code` +
267
267
  `&redirect_uri=${encodeURIComponent(redirectUri)}`;
268
268