Skip to main content
Glama
Imsamiullah09

amazon-ads-mcp

amazon-ads-mcp

Production-ready MCP server connecting Amazon Advertising data to Claude and any MCP-compatible client.

Query Sponsored Products, Sponsored Brands and Sponsored Display structure and performance, run Amazon DSP reports, and execute Amazon Marketing Cloud (AMC) SQL workflows — all in natural language, with live data straight from the Amazon Ads API. No mock data, ever.

CI License: MIT Node >= 20


Features

  • 23 read-only tools across profiles, Sponsored Products (v3), Sponsored Brands (v4), Sponsored Display, unified Reporting v3, Amazon DSP, and AMC

  • Data accuracy by construction — every number comes live from Amazon; downloaded reports pass integrity checks (column presence, non-negative metric invariants, daily date-coverage) and totals are computed server-side so the model never sums truncated samples

  • Resilient HTTP layer — OAuth token refresh with single-flight de-duplication, client-side token-bucket rate limiting, exponential backoff with jitter, Retry-After honoring on 429, one automatic re-auth on 401

  • Fast on large accounts — TTL response cache for entity reads, nextToken/index pagination passthrough, parallel tool calls are safe (rate limiter serializes the wire)

  • Secure by default — secrets only via environment variables, redacted from logs, never written to disk; logs go to stderr (stdout is reserved for the MCP protocol)

  • Two transports — stdio for Claude Desktop / Claude Code, streamable HTTP for Docker or remote deployment

  • Tested — 36 unit/integration tests including full MCP wire-protocol tests with the Amazon API mocked at the fetch boundary

Related MCP server: Amazon Ads MCP

Architecture

flowchart LR
    subgraph Client["MCP Client"]
        C[Claude Desktop / Claude Code / any MCP host]
    end
    subgraph Server["amazon-ads-mcp"]
        T[MCP tool layer<br/>zod-validated schemas]
        V[Validation & reconciliation]
        H[HTTP client<br/>retries · rate limit · cache]
        A[Token manager<br/>LwA refresh, single-flight]
    end
    subgraph Amazon["Amazon"]
        LWA[Login with Amazon<br/>OAuth token endpoint]
        API[Amazon Ads API<br/>NA / EU / FE]
        S3[Signed report URLs]
    end

    C -- stdio / streamable HTTP --> T
    T --> V --> H
    H --> A --> LWA
    H --> API
    H -- report download<br/>no auth headers --> S3

Async reporting flow (Reporting v3, DSP, AMC all follow it):

sequenceDiagram
    participant Claude
    participant MCP as amazon-ads-mcp
    participant Ads as Amazon Ads API

    Claude->>MCP: create_report(dates, columns, ...)
    MCP->>Ads: POST /reporting/reports
    Ads-->>MCP: reportId (PENDING)
    loop until COMPLETED (1–15 min typical)
        Claude->>MCP: get_report_status(reportId)
        MCP->>Ads: GET /reporting/reports/{id}
    end
    Claude->>MCP: download_report(reportId)
    MCP->>Ads: fetch signed URL, gunzip, validate
    MCP-->>Claude: reconciled totals + row sample (+ optional JSON file)

Prerequisites

You need Amazon Ads API access (this is Amazon's process, not this project's):

  1. An Amazon Ads account (seller, vendor, or agency).

  2. A Login with Amazon (LwA) security profile with the Amazon Ads API scope approved — apply via the onboarding guide.

  3. A refresh token generated through the LwA authorization-code grant for your own account (create authorization grant).

Plus Node.js ≥ 20 (or Docker).

New to all of this? Follow the step-by-step User Guide — it walks through Amazon API onboarding, refresh-token generation, installation, and Claude setup with no prior knowledge assumed.

Installation

git clone https://github.com/Imsamiullah09/amazon-ads-mcp.git
cd amazon-ads-mcp
npm ci
npm run build

Environment variables

Copy .env.example and fill it in:

Variable

Required

Description

AMAZON_ADS_CLIENT_ID

LwA client id (amzn1.application-oa2-client.…)

AMAZON_ADS_CLIENT_SECRET

LwA client secret

AMAZON_ADS_REFRESH_TOKEN

LwA refresh token (Atzr|…)

AMAZON_ADS_REGION

NA, EU, or FE — must match where the refresh token was issued

AMAZON_ADS_PROFILE_ID

Default advertiser profile (else pass profileId per tool call)

MCP_TRANSPORT

stdio (default) or http

MCP_HTTP_PORT

HTTP port, default 3000

AMAZON_ADS_RATE_LIMIT_RPS

Client-side request ceiling, default 5/s

AMAZON_ADS_CACHE_TTL_SECONDS

Entity-read cache TTL, default 60 (0 disables)

AMAZON_ADS_MAX_RETRIES

Retry attempts for 429/5xx, default 4

LOG_LEVEL

pino level, default info (logs go to stderr)

REPORT_OUTPUT_DIR

Where download_report --saveAs writes files, default ./reports-output

Claude Desktop

Add to claude_desktop_config.json (Settings → Developer → Edit Config), or copy examples/claude_desktop_config.json:

{
  "mcpServers": {
    "amazon-ads": {
      "command": "node",
      "args": ["/absolute/path/to/amazon-ads-mcp/dist/index.js"],
      "env": {
        "AMAZON_ADS_CLIENT_ID": "amzn1.application-oa2-client.…",
        "AMAZON_ADS_CLIENT_SECRET": "…",
        "AMAZON_ADS_REFRESH_TOKEN": "Atzr|…",
        "AMAZON_ADS_REGION": "NA",
        "AMAZON_ADS_PROFILE_ID": "1234567890"
      }
    }
  }
}

Restart Claude Desktop and ask: “Run a health check on my Amazon Ads connection.”

Claude Code

claude mcp add amazon-ads \
  -e AMAZON_ADS_CLIENT_ID=… -e AMAZON_ADS_CLIENT_SECRET=… \
  -e AMAZON_ADS_REFRESH_TOKEN=… -e AMAZON_ADS_REGION=NA \
  -- node /absolute/path/to/amazon-ads-mcp/dist/index.js

Docker

cp .env.example .env   # fill in credentials
docker compose up -d   # streamable HTTP on http://127.0.0.1:3000/mcp

The compose file binds to localhost only: the HTTP endpoint deliberately ships without its own auth layer (it holds a single advertiser's credentials). For remote access, front it with your own reverse proxy and authentication. For stdio inside Docker: docker run -i --env-file .env -e MCP_TRANSPORT=stdio amazon-ads-mcp.

Example prompts

  • “List my advertiser profiles and tell me which marketplaces I'm in.”

  • “Show all enabled Sponsored Products campaigns and their daily budgets.”

  • “Create a daily campaign performance report for the last 30 days, wait for it, and summarize spend, sales and ACOS by campaign.”

  • “Pull a search-term report for May and find queries with clicks but zero purchases.”

  • “Which ASINs am I advertising in ad group X?”

  • “Run my AMC workflow path_to_conversion for last week and give me the download links.”

More in examples/prompts.md. Full tool reference in docs/API.md.

Data accuracy & reconciliation

  • No mock data. Every tool hits the live Amazon Ads API; errors are surfaced (with Amazon's request id) instead of silently degraded.

  • download_report validates each report: requested columns present, invariant metrics (impressions, clicks, cost, sales…) non-negative, and daily reports checked for date-coverage gaps.

  • Totals are computed once, server-side, and returned alongside a bounded row sample — the model is explicitly instructed to quote reconciled totals rather than re-sum samples.

  • Entity reads are cached for 60 s by default (configurable, or disable with AMAZON_ADS_CACHE_TTL_SECONDS=0); report status/downloads are never cached.

  • Caveat that applies to any Amazon Ads integration: Amazon's own attribution metrics are restated for up to ~14 days after the fact, so a report pulled today can legitimately differ from the same report pulled next week. That is Amazon-side behavior, not a sync bug.

Verified capabilities vs. assumptions

This project distinguishes what is verified against Amazon's public documentation from what depends on your account's entitlements:

Area

Status

Profiles /v2/profiles

✅ Verified, generally available

Sponsored Products v3 (POST /sp/*/list, versioned media types)

✅ Verified

Sponsored Brands v4 (POST /sb/v4/*/list)

✅ Verified

Sponsored Display (GET /sd/*)

✅ Verified for self-service SD accounts

Reporting v3 (/reporting/reports, GZIP_JSON async)

✅ Verified

Amazon DSP reports & orders

⚠️ Entitlement-gated. Requires a DSP seat with API access; without it Amazon returns 403. Endpoint media-type versions evolve — pin against Amazon's DSP docs for your account type.

AMC workflows/executions

⚠️ Entitlement-gated + evolving. Requires a provisioned AMC instance with your LwA client allow-listed. Endpoint shapes follow the AMC Reporting API; verify against the AMC docs for your instance before relying on them in production.

Write operations (create/update campaigns, bids, budgets)

Intentionally not implemented in v1. This server is read/reporting-only to make it safe against production ad spend. PRs welcome behind an explicit opt-in flag.

Rate limits

Amazon's limits are dynamic and undocumented; this server enforces a client-side ceiling and honors 429 Retry-After, but cannot guarantee you'll never be throttled.

Development

npm run dev        # run from source (tsx)
npm test           # vitest suite (36 tests, no network — fetch is mocked)
npm run typecheck  # strict TS
npm run build      # emit dist/

See docs/ARCHITECTURE.md for module layout and design decisions, and CONTRIBUTING.md for workflow. Security policy: SECURITY.md.

License

MIT

Available Tools

23 tools
amc_create_workflowCreate AMC workflow (SQL)A

Save an AMC SQL workflow on an instance. AMC SQL queries clean-room event tables (impressions, clicks, conversions); aggregation thresholds apply — queries returning user-level data are rejected by AMC.

ParametersJSON Schema
NameRequiredDescriptionDefault
entityIdYesAMC entity id (Amazon-Advertising-API-AdvertiserId header), e.g. ENTITY1ABC…
marketplaceIdYesMarketplace id (Amazon-Advertising-API-MarketplaceId header), e.g. ATVPDKIKX0DER for amazon.com
instanceIdYes
workflowIdYesYour identifier for this workflow.
sqlQueryYesAMC SQL.

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate readOnlyHint=false and destructiveHint=false, and the description adds valuable behavioral context: it explains the nature of AMC SQL (clean-room event tables) and constraints (aggregation thresholds, rejection of user-level data). This goes beyond what annotations provide, giving agents a clearer picture of what the tool does and its limitations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise (two sentences) and front-loaded: the first sentence states the core action, and the second adds a critical constraint. Every word serves a purpose, with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity and the absence of an output schema, the description adequately conveys the purpose and key constraints. However, it lacks information about the return value, error scenarios, or the lifecycle (e.g., that saving does not execute the workflow). The openWorldHint annotation suggests more side effects may exist, which the description does not address.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 80% (4 of 5 parameters described), so the baseline is 3. The description does not add parameter-specific details beyond the schema; it only provides general context about the sqlQuery parameter. While helpful, it does not significantly enhance understanding of individual parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Save an AMC SQL workflow') and identifies the resource ('on an instance'). It distinguishes from sibling tools like amc_execute_workflow (which runs workflows) and amc_list_workflows (which lists them) by focusing on creation. The context about AMC SQL and aggregation thresholds further clarifies the tool's domain.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides some guidance by noting that aggregation thresholds apply and that user-level queries are rejected, which helps agents understand constraints. However, it does not explicitly state when to choose this tool over alternatives (e.g., amc_execute_workflow for execution). There is no mention of prerequisites or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

amc_execute_workflowExecute AMC workflow (async)A

Start an execution of a saved AMC workflow over a time window. Returns an execution id; poll with amc_get_execution, then fetch results with amc_get_download_urls.

ParametersJSON Schema
NameRequiredDescriptionDefault
entityIdYesAMC entity id (Amazon-Advertising-API-AdvertiserId header), e.g. ENTITY1ABC…
marketplaceIdYesMarketplace id (Amazon-Advertising-API-MarketplaceId header), e.g. ATVPDKIKX0DER for amazon.com
instanceIdYes
workflowIdYes
timeWindowStartNoISO-8601, e.g. 2026-05-01T00:00:00Z
timeWindowEndNo
timeWindowTypeNoe.g. EXPLICIT, MOST_RECENT_WEEK — see AMC docs.

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Description communicates the async nature and non-destructive behavior, aligning with annotations (readOnlyHint=false, destructiveHint=false). Adds the polling pattern and result retrieval workflow, going beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no wasted words, front-loaded with verb and resource. Perfectly concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Provides the essential workflow: execute, poll, fetch results. However, missing details on error handling, prerequisites (e.g., saved workflow exists), and the role of instanceId. With no output schema, the description covers the basic flow adequately.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Description mentions 'over a time window' related to time parameters but does not explain key parameters like instanceId and workflowId, despite schema coverage only 57%. Schema descriptions exist for entityId, marketplaceId, timeWindowStart, timeWindowType, but the description adds little parameter-level detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states 'Start an execution of a saved AMC workflow over a time window' with a specific verb and resource, and distinguishes from siblings like amc_get_execution (polling) and amc_get_download_urls (fetching results).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly describes the async pattern: 'Returns an execution id; poll with amc_get_execution, then fetch results with amc_get_download_urls.' This provides clear context on when to use this tool (to start an execution) and the subsequent steps, though lacks explicit alternatives or when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

amc_get_download_urlsGet AMC result download URLsA
Read-only

Get signed download URLs (CSV) for a SUCCEEDED AMC workflow execution. URLs expire after a short period.

ParametersJSON Schema
NameRequiredDescriptionDefault
entityIdYesAMC entity id (Amazon-Advertising-API-AdvertiserId header), e.g. ENTITY1ABC…
marketplaceIdYesMarketplace id (Amazon-Advertising-API-MarketplaceId header), e.g. ATVPDKIKX0DER for amazon.com
instanceIdYes
executionIdYes

TDQS

A4.2/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate readOnlyHint=true and openWorldHint=true. The description adds value by disclosing URL expiration ('expire after a short period') and the signed/CSV nature, which is beyond what annotations provide. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences: the first states the core function, the second adds a critical behavioral detail. No redundant words; everything earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the main purpose and a key constraint (expiration) but does not describe the return structure (e.g., array of URLs) or error conditions (e.g., what if execution is not succeeded). With no output schema, this information would be helpful for agents.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50%; only entityId and marketplaceId have descriptions. The tool description adds no parameter-specific guidance. For the two undocumented parameters (instanceId, executionId), the agent must rely on naming alone, which is insufficient.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves signed download URLs for succeeded AMC workflow executions. It specifies the output format (CSV) and a key constraint (URLs expire). This differentiates it from sibling tools like amc_get_execution (status) and download_report (generic reports).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description specifies the tool is for 'SUCCEEDED' executions, providing clear context on when to use it. However, it does not explicitly state when not to use it or mention alternatives among siblings, leaving some ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

amc_get_executionCheck AMC execution statusA
Read-only

Check the status of an AMC workflow execution (PENDING/RUNNING/SUCCEEDED/FAILED).

ParametersJSON Schema
NameRequiredDescriptionDefault
entityIdYesAMC entity id (Amazon-Advertising-API-AdvertiserId header), e.g. ENTITY1ABC…
marketplaceIdYesMarketplace id (Amazon-Advertising-API-MarketplaceId header), e.g. ATVPDKIKX0DER for amazon.com
instanceIdYes
executionIdYes

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Description adds the list of possible status values, which is helpful. Annotations already declare readOnlyHint and openWorldHint, so description adds modest additional context without contradicting.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, front-loaded with essential information, no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and moderate complexity (4 params), the description is minimal. It covers the status values but lacks details about response structure or error conditions. Annotations provide safety context but not completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50% (entityId and marketplaceId documented, instanceId and executionId not). The description does not provide additional parameter meaning for the undocumented ones, so it fails to compensate for the gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states 'Check the status of an AMC workflow execution' with a specific verb and resource, and lists possible statuses. Distinguishes from sibling tools like amc_execute_workflow and amc_list_workflows.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implied usage (to check status after execution) but no explicit guidance on when to use vs alternatives, no when-not-to-use conditions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

amc_list_instancesList AMC instancesA
Read-only

List Amazon Marketing Cloud instances for an AMC entity. REQUIRES a provisioned AMC instance with this API client allow-listed; otherwise returns 403 (an Amazon entitlement, not a server bug).

ParametersJSON Schema
NameRequiredDescriptionDefault
entityIdYesAMC entity id (Amazon-Advertising-API-AdvertiserId header), e.g. ENTITY1ABC…
marketplaceIdYesMarketplace id (Amazon-Advertising-API-MarketplaceId header), e.g. ATVPDKIKX0DER for amazon.com

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond annotations (readOnlyHint, openWorldHint), description adds that the tool requires entitlement and explains the 403 error as an Amazon entitlement issue, not a server bug. Provides valuable behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no waste. Front-loaded with primary action, followed by critical prerequisite. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list operation with two required parameters and no output schema, the description covers purpose, prerequisites, and error behavior. Annotations fill remaining gaps. Complete and sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear descriptions for both parameters. Description does not add meaning beyond schema; it sets context but doesn't enhance parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly specifies the action 'List Amazon Marketing Cloud instances for an AMC entity' with a specific verb and resource. It differentiates from sibling tools like amc_create_workflow and amc_list_workflows.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states the prerequisite 'REQUIRES a provisioned AMC instance with this API client allow-listed' and clarifies the 403 error meaning. Does not explicitly mention when not to use, but context from sibling tools implies alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

amc_list_workflowsList AMC workflowsB
Read-only

List saved AMC SQL workflows on an instance.

ParametersJSON Schema
NameRequiredDescriptionDefault
entityIdYesAMC entity id (Amazon-Advertising-API-AdvertiserId header), e.g. ENTITY1ABC…
marketplaceIdYesMarketplace id (Amazon-Advertising-API-MarketplaceId header), e.g. ATVPDKIKX0DER for amazon.com
instanceIdYes

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate readOnlyHint and openWorldHint. The description adds 'on an instance' but does not elaborate beyond that. It does not contradict annotations, but adds little extra behavioral context for a read-only listing operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise, consisting of a single sentence. It is appropriately sized for the tool's simplicity, but it lacks some detail that could be included without becoming verbose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 3 required parameters, no output schema, and annotations that partially cover behavioral traits, the description is incomplete. It does not mention pagination, result format, or any filtering capabilities, leaving the agent without sufficient context for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 67%: two parameters have descriptions, but instanceId does not. The tool description does not add any parameter-specific information beyond the schema, failing to compensate for the missing schema description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('List') and the resource ('saved AMC SQL workflows') and the scope ('on an instance'). It distinguishes this tool from siblings like amc_create_workflow and amc_execute_workflow.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It only states what it does without any context about when or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_reportCreate performance report (async)A

Request an async performance report (Reporting v3) for Sponsored Products, Brands or Display. Returns a reportId immediately; reports typically complete in 1–15 minutes (up to ~3h for large accounts). Poll with get_report_status, then fetch data with download_report. Common reportTypeIds: spCampaigns, spTargeting, spSearchTerm, spAdvertisedProduct, sbCampaigns, sdCampaigns. Example columns for spCampaigns: campaignId, campaignName, impressions, clicks, cost, purchases14d, sales14d (+ date when timeUnit=DAILY).

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
startDateYesYYYY-MM-DD, in the profile's timezone. Most report types allow up to ~95 days lookback.
endDateYesYYYY-MM-DD inclusive.
adProductYes
reportTypeIdYesReport type id, e.g. spCampaigns, spSearchTerm, sbCampaigns, sdCampaigns.
groupByYesAggregation level, e.g. ["campaign"] or ["campaign","adGroup"].
columnsYesColumns to include. Include "date" when timeUnit=DAILY.
timeUnitNoSUMMARY = one row per entity (default); DAILY = one row per entity per day.
nameNo

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses async nature, immediate return, and typical 1-15 min completion (up to 3h). No contradiction with annotations (readOnlyHint=false, destructiveHint=false, openWorldHint=true).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single paragraph packed with info; could benefit from bulletization. Front-loads key async behavior and workflow.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers purpose, workflow, timing, examples, and common ids. No output schema, but explains return of reportId and polling needed. Missing explicit detail on groupBy/columns beyond examples, but schema covers those.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 78%; description adds common reportTypeIds and example columns, plus hint to omit profileId for default. Adds value beyond schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool requests an async performance report for Sponsored Products, Brands, or Display, returning a reportId. It lists common reportTypeIds, distinguishing it from siblings like get_report_status and download_report.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit workflow: request with create_report, poll with get_report_status, fetch with download_report. Mentions typical completion times. However, no comparison to alternative report creation tools like dsp_create_report.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

download_reportDownload + validate report dataA
Read-only

Download a COMPLETED report, decompress it, run data-integrity checks (column presence, non-negative metrics, daily date coverage) and return reconciled totals plus a row sample. Large result sets are NOT dumped into chat: totals are computed server-side and the full dataset can be saved to a local JSON file via saveAs. Always present the reconciliation totals rather than re-summing sample rows.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
reportIdYes
maxRowsInlineNoHow many raw rows to return inline (default 50).
saveAsNoOptional filename (no directories) to save the full row set as JSON under REPORT_OUTPUT_DIR.

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint=true. The description adds valuable behavioral context: decompression, integrity checks, server-side totals, and the saveAs mechanism to avoid dumping large datasets into chat. It also instructs to present reconciled totals, which is critical for proper agent usage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded, starting with the core purpose and then detailing behavioral notes. Every sentence serves a purpose, though it could be slightly tightened without losing information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description covers the return format (totals and row sample) and explains the validation checks. It also addresses large result set handling. Missing some error handling details, but overall sufficient for an agent to use correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 75%, with most parameters having descriptions. The description adds context that saveAs avoids dumping into chat and maxRowsInline controls inline rows, but it does not explicitly describe profileId or the default behavior. Overall, it adds marginal value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool downloads a completed report, decompresses it, runs data-integrity checks, and returns reconciled totals with a row sample. It explicitly distinguishes itself from siblings like create_report and get_report_status by focusing on completed reports and validation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states the report must be COMPLETED, which guides when to use this tool. It does not directly name alternatives, but the context of 'completed' implies it should be used after get_report_status indicates completion, making usage clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

dsp_create_reportCreate DSP report (async)A

Request an async Amazon DSP report (impressions, viewability, conversions, etc.) for a DSP account. Requires DSP API access. Returns a reportId; poll with dsp_get_report until the report has a download location.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
accountIdYesDSP advertiser/entity account id from the DSP console.
startDateYesYYYY-MM-DD
endDateYesYYYY-MM-DD
typeNoReport type, e.g. CAMPAIGN, INVENTORY, AUDIENCE.
dimensionsNoe.g. ORDER, LINE_ITEM, CREATIVE
metricsNoOmit for the report type's defaults.
timeUnitNo
formatNo

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark readOnlyHint=false and destructiveHint=false. The description adds value by disclosing that the tool is async and requires polling, and that DSP API access is needed. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loads the action, and includes essential context without fluff. Every sentence is informative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 9 parameters and no output schema, the description covers the return value (reportId) and next step (polling). It lacks error handling details but is sufficient for an async report request.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 78% coverage with good descriptions per parameter. The description adds no additional parameter context, meeting the baseline of 3 for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action 'Request an async Amazon DSP report' and specifies data types (impressions, viewability, conversions). It distinguishes from sibling tools by mentioning the async nature and the polling mechanism with dsp_get_report. The tool name is not a tautology.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context: requires DSP API access, returns a reportId for polling. It does not explicitly contrast with sibling tools like create_report, but the async guidance is clear. Slight lack of exclusion criteria keeps it from a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

dsp_get_reportCheck DSP report statusA
Read-only

Check status of a DSP report. When complete, the response includes a signed download location URL valid for a limited time.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
accountIdYes
reportIdYes

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations readOnlyHint and openWorldHint already indicate a safe read operation. The description adds that the response includes a signed download URL, which is useful. However, it does not disclose polling behavior, rate limits, or other side effects beyond what annotations convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core purpose, and contains no extraneous information. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the main action and the key output (signed URL). However, it does not describe the full response structure (e.g., status codes, timestamps) or usage pattern (e.g., polling). Given no output schema, additional detail would help.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description does not mention any of the three parameters. With only 33% schema coverage (only profileId documented), the description fails to compensate for the undocumented accountId and reportId parameters. Agents lack context to understand what values to provide.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool checks the status of a DSP report and mentions the signed download URL upon completion. The title 'Check DSP report status' and verb 'Check' align well. It distinguishes from sibling tools like create_report and download_report.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies you would use this after creating a report to check if it's ready, but it does not explicitly compare to alternatives like get_report_status or detail prerequisites. Usage guidance is present but not fully explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

dsp_list_ordersList DSP ordersA
Read-only

List Amazon DSP orders (campaigns) for a DSP advertiser profile. REQUIRES DSP entity access on your API client — accounts without a DSP seat get HTTP 403 (an Amazon entitlement, not a server bug).

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
startIndexNo
countNo

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and openWorldHint=true. Description adds valuable behavioral context by clarifying the DSP access requirement and the nature of the 403 error (entitlement issue). No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with no fluff. The first sentence states the core purpose, the second adds critical precondition. Well-structured for quick comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers purpose and access requirements, but lacks details on response format, pagination behavior, or sorting/filtering. Given the absence of an output schema, more context on what the list returns would be helpful.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only 33% of parameters have schema descriptions. The description adds no further meaning for startIndex and count beyond what the schema provides. It ties profileId to the DSP advertiser profile concept, but overall parameter semantics are weak.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the action (list), resource (DSP orders/campaigns), and context (DSP advertiser profile). It distinguishes from sibling campaign listing tools by specifying 'DSP', which is a distinct advertising platform.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states the prerequisite (DSP entity access) and the error behavior when not met (HTTP 403). Provides clear context for when to use, though does not explicitly mention alternatives among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_profilesList advertiser profilesA
Read-only

List all Amazon Ads advertiser profiles (accounts) accessible to these credentials in the configured region. Returns profileId, marketplace, currency, timezone and account info. Call this first: the profileId scopes every other tool.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already show readOnlyHint=true and openWorldHint=true. Description adds context about returned fields (profileId, marketplace, etc.) and the relevance of credentials and region, no contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three efficient sentences with front-loaded purpose. Every sentence is useful, no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a parameterless, no-output-schema tool, the description fully explains its role, return fields, and why it should be called first.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters, so schema coverage is 100% and description need not elaborate. The description adds value by explaining what the tool returns.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb (List) and resource (advertiser profiles/accounts) and distinguishes from any sibling tools. No other tool lists profiles.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states 'Call this first' and explains that profileId scopes other tools, providing clear when-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_report_statusCheck report statusA
Read-only

Check the status of an async report created with create_report. Status flows PENDING → PROCESSING → COMPLETED (or FAILURE with a reason). When COMPLETED, use download_report.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
reportIdYesReport id from create_report.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and openWorldHint=true; description adds valuable context about async status flow (PENDING→PROCESSING→COMPLETED/FAILURE with reason) and links to download_report for COMPLETED.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no fluff, front-loaded with purpose. Every sentence adds useful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple status-check tool with readHint, description covers the lifecycle and sibling dependency (download_report). Lacks detail on return fields, but acceptable given no output schema and tool simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents parameters. Description adds value by noting profileId can be omitted to use a default and that reportId comes from create_report, improving usability.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States it checks status of an async report from create_report, lists status progression, and mentions download_report for COMPLETED. Clearly distinguishes from sibling tools create_report and download_report.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells when to use download_report, implying it should be used after create_report. Provides good context but doesn't explicitly state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

health_checkConnection health checkA
Read-only

Verify credentials and connectivity: refreshes the LwA access token and lists profiles, reporting region, latency and configuration (secrets redacted). Use to diagnose auth/setup issues.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.1/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Description states it 'refreshes the LwA access token', which is a write operation, contradicting the readOnlyHint=true annotation. Per scoring rules, contradiction leads to score 1.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two efficient sentences front-loaded with purpose. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no parameters, no output schema, and annotations present, the description fully covers the tool's behavior and use case. The contradiction is noted but completeness is not diminished.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters (0 params), so baseline 4. Description adds no parameter info, which is acceptable since none exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool verifies credentials and connectivity, refreshes token, and lists profiles/region/latency/config. It distinguishes from siblings which are workflow/report-related.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells when to use: 'Use to diagnose auth/setup issues.' This provides clear context with no ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sb_list_ad_groupsList Sponsored Brands ad groupsA
Read-only

List Sponsored Brands ad groups (v4), optionally filtered by campaign ids.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoFilter by entity state. Omit for all states.
campaignIdsNo
maxResultsNoPage size (Amazon max varies by endpoint; <=1000).
nextTokenNoOpaque pagination token from a previous response.

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint (true) and openWorldHint (true), indicating a safe, non-exhaustive read operation. The description adds the optional filter for campaign ids but does not elaborate on pagination behavior or result structure. With annotations present, the description provides adequate but minimal additional behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that includes the core purpose, API version, and key capability, with no redundant or irrelevant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a list operation with no required parameters and an output schema absent, the description is minimal but sufficient. It leverages the schema for parameter details and annotations for behavioral traits. The lack of output description is acceptable given the tool's simplicity and the presence of pagination parameters in the schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 80%, with four of five parameters documented. The only undocumented parameter (campaignIds) is clarified in the description ('optionally filtered by campaign ids'), adding meaning beyond the schema. The remaining parameters are already well-described in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List', the resource 'Sponsored Brands ad groups', specifies API version '(v4)', and notes the optional filter 'by campaign ids'. This effectively distinguishes it from siblings like sb_list_campaigns (lists campaigns) and sd_list_ad_groups (ad group list for Sponsored Display).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The title and description specify 'Sponsored Brands', providing clear context for when to use this tool versus siblings for other advertising product types. While it does not explicitly list alternatives or exclusions, the naming convention and tool hierarchy make the intended use obvious.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sb_list_campaignsList Sponsored Brands campaignsA
Read-only

List Sponsored Brands campaigns (v4) with budgets, states and dates. Paginate with nextToken. Use create_report (adProduct SPONSORED_BRANDS) for performance metrics.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoFilter by entity state. Omit for all states.
campaignIdsNo
maxResultsNoPage size (Amazon max varies by endpoint; <=1000).
nextTokenNoOpaque pagination token from a previous response.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds behavioral context by mentioning pagination via nextToken and the specific data returned (budgets, states, dates). No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary purpose, and concise. Every word contributes value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description outlines key return fields and pagination. While it omits campaign IDs or names, it is sufficient for a listing tool with well-named parameters and high schema coverage. Minor gaps prevent a perfect score.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 80%, so baseline is 3. The description adds little beyond the schema: 'Paginate with nextToken' is already documented. CampaignIds parameter lacks description in both schema and description, but overall no additional value added.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists Sponsored Brands campaigns with specific fields (budgets, states, dates) and version (v4). It distinguishes from sibling tools by name and by pointing to create_report for performance metrics, leaving no ambiguity about its function.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance to use create_report for performance metrics, indicating when not to use this tool. While it doesn't directly contrast with sibling list tools, the context of 'Sponsored Brands' and the tool name effectively narrows its scope.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sd_list_ad_groupsList Sponsored Display ad groupsA
Read-only

List Sponsored Display ad groups with bid optimization settings and states.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoSD uses lower-case states.
startIndexNo0-based pagination offset.
countNoPage size, max 100.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint and openWorldHint. The description adds marginal context about the data contents (bid optimization settings, states) but does not disclose behavioral traits like pagination, rate limits, or response structure, which would be useful. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no wasted words. It is front-loaded with the key action and resource.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description, combined with annotations and schema, covers the core functionality. However, it omits explicit mention of pagination behavior (though schema includes startIndex and count). For a list tool with openWorldHint, this is a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the baseline is 3. The description does not add any parameter-specific meaning beyond what the schema already provides; it only mentions the data returned.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List' and the resource 'Sponsored Display ad groups', and it specifies what is included ('bid optimization settings and states'), effectively distinguishing it from sibling tools that list campaigns or ad groups for other ad types.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not provide explicit guidance on when to use this tool versus alternatives like sd_list_campaigns or sb_list_ad_groups. Usage is implied by the tool name and resource type, but no exclusion criteria or contextual hints are given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sd_list_campaignsList Sponsored Display campaignsB
Read-only

List Sponsored Display campaigns with budgets, tactics and states. Uses startIndex/count pagination (not nextToken).

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoSD uses lower-case states.
startIndexNo0-based pagination offset.
countNoPage size, max 100.

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true, covering safety and result bounds. The description adds that pagination uses startIndex/count (not nextToken), which is a useful behavioral detail. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely concise: two sentences with clear front-loading of purpose and pagination method. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a list tool without output schema, it mentions returned fields (budgets, tactics, states) and pagination method. Could mention iteration pattern or default pagination values, but overall adequate given annotations (openWorldHint).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear parameter descriptions (profileId, stateFilter with lower-case note, startIndex, count). The description does not add significant meaning beyond the schema; baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states 'List Sponsored Display campaigns with budgets, tactics and states', specifying the resource (SD campaigns) and included fields. However, it does not explicitly differentiate from sibling list tools (e.g., sp_list_campaigns), which would improve clarity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides no guidance on when to use this tool versus alternatives like sb_list_campaigns or sp_list_campaigns. The only usage hint is the pagination method, which is more of a behavioral detail than a selection criterion.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sp_list_ad_groupsList Sponsored Products ad groupsA
Read-only

List Sponsored Products ad groups (v3), optionally filtered to specific campaigns. Paginate with nextToken.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoFilter by entity state. Omit for all states.
campaignIdsNoRestrict to these campaign ids.
maxResultsNoPage size (Amazon max varies by endpoint; <=1000).
nextTokenNoOpaque pagination token from a previous response.

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description indicates a read-only 'List' operation, aligning with the 'readOnlyHint' annotation. It adds context about pagination via nextToken. No contradictions, and the description complements the annotations by confirming the safety profile.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: one for purpose and version, one for optional filtering and pagination. Every sentence is essential, no unnecessary words. Highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description is adequate but not comprehensive: it omits mention of state filtering and profileId handling. It covers the core functionality but could be more complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds value by summarizing optional filtering and pagination, but the schema descriptions already provide detailed param info, so the added meaning is marginal.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List Sponsored Products ad groups (v3)', providing a specific verb ('List'), resource ('Sponsored Products ad groups'), and version. It distinguishes from siblings like 'sb_list_ad_groups' and 'sd_list_ad_groups' by the product type.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions that the tool can be optionally filtered to specific campaigns and pagination with nextToken, but does not provide explicit guidance on when to use it over sibling tools (e.g., sp_list_campaigns, sb_list_ad_groups). No when-not-to-use or alternative tool mentions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sp_list_campaignsList Sponsored Products campaignsA
Read-only

List Sponsored Products campaigns (v3) with budgets, states, targeting type and dates. Paginate with nextToken. For performance metrics, use create_report instead — entity endpoints return configuration, not spend/sales.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoFilter by entity state. Omit for all states.
campaignIdsNoRestrict to these campaign ids.
maxResultsNoPage size (Amazon max varies by endpoint; <=1000).
nextTokenNoOpaque pagination token from a previous response.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Description adds value beyond annotations: clarifies pagination mechanism (nextToken) and the nature of returned data (configuration, not spend/sales). No contradiction with readOnlyHint=true and openWorldHint=true.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: first covers purpose and pagination, second provides critical usage guideline. No wasted words, front-loaded with key information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 5 parameters, no output schema, and good annotations, description covers purpose, pagination, and important distinction from metrics tools. Lacks example or return format but still adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so description adds little beyond schema. Mentions pagination token but doesn't elaborate on parameter meanings. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states verb 'List', resource 'Sponsored Products campaigns', and specifies included fields (budgets, states, targeting type, dates). Distinguishes from sibling tools like create_report by stating it returns configuration, not metrics.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly advises when not to use (for performance metrics, use create_report) and provides context about pagination with nextToken. Could mention alternatives for different ad types (sb_, sd_), but context from sibling names provides this implicitly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sp_list_keywordsList Sponsored Products keywordsA
Read-only

List Sponsored Products keywords (v3) with match types, bids and states. Filter by campaignIds or adGroupIds; paginate with nextToken.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoFilter by entity state. Omit for all states.
campaignIdsNoRestrict to these campaign ids.
maxResultsNoPage size (Amazon max varies by endpoint; <=1000).
nextTokenNoOpaque pagination token from a previous response.
adGroupIdsNoRestrict to these ad group ids.

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds minimal extra behavioral insight (e.g., what attributes are returned). It does not disclose any additional traits like rate limits or data freshness, but the annotations sufficiently cover the read-only nature.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary action and key details. Every word contributes meaning without redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no output schema, the description provides reasonable context by listing returned attributes (match types, bids, states) and pagination. It could mention expected response structure more explicitly, but overall it is adequate for a simple listing tool with annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema coverage is 100%, so the description adds limited new meaning beyond the schema. It mentions filtering and pagination but does not elaborate on parameter relationships or specific formats, maintaining a baseline score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists Sponsored Products keywords, specifies version (v3), and mentions key attributes (match types, bids, states). It effectively distinguishes from sibling tools like sp_list_ad_groups or sp_list_campaigns by focusing on keywords.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context on filtering (by campaignIds or adGroupIds) and pagination (with nextToken), helping the agent understand how to use the tool. However, it does not explicitly state when to use this tool versus alternatives or provide exclusionary guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sp_list_product_adsList Sponsored Products product adsB
Read-only

List Sponsored Products product ads (v3): which ASINs/SKUs are advertised in which ad groups, with states.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoFilter by entity state. Omit for all states.
campaignIdsNoRestrict to these campaign ids.
maxResultsNoPage size (Amazon max varies by endpoint; <=1000).
nextTokenNoOpaque pagination token from a previous response.
adGroupIdsNoRestrict to these ad group ids.

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and openWorldHint=true. The description adds that it lists 'which ASINs/SKUs are advertised in which ad groups, with states,' which provides relationship context. However, it does not disclose pagination behavior, default parameter values, or ordering, so it adds limited value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, information-dense sentence that captures the core functionality without fluff. It is front-loaded with the key verb and resource, making it efficient for scanning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description should compensate by explaining what the response contains (e.g., fields of each product ad). It does not. While annotations cover safety and scope, the description omits output structure and critical details like result ordering or token usage, leaving the agent underinformed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All 6 parameters have descriptions in the input schema (100% coverage), so the schema already explains each parameter fully. The description adds no additional parameter information beyond the schema, earning the baseline score of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List Sponsored Products product ads (v3): which ASINs/SKUs are advertised in which ad groups, with states.' This provides a specific verb ('List'), resource ('product ads'), and scope ('Sponsored Products'), and distinguishes from sibling tools like sp_list_ad_groups or sp_list_campaigns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description lacks any guidance on when to use this tool versus alternatives (e.g., sp_list_ad_groups, sp_list_campaigns). No exclusions or context for selection are provided, leaving the agent to infer usage solely from the name and sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sp_list_targetsList Sponsored Products product/category targetsA
Read-only

List Sponsored Products targeting clauses (v3): product, category and auto-targeting expressions with bids and states.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileIdNoAmazon Ads profile id (Amazon-Advertising-API-Scope). Omit to use the AMAZON_ADS_PROFILE_ID default. Discover ids with get_profiles.
stateFilterNoFilter by entity state. Omit for all states.
campaignIdsNoRestrict to these campaign ids.
maxResultsNoPage size (Amazon max varies by endpoint; <=1000).
nextTokenNoOpaque pagination token from a previous response.
adGroupIdsNoRestrict to these ad group ids.

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true, so the description's minimal behavioral information (listing types and fields) adds only marginal value. It does not disclose pagination behavior, rate limits, or other traits beyond what annotations cover, resulting in a baseline score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. It efficiently conveys the resource, version, types, and included data fields.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (6 parameters, no output schema) and the presence of annotations, the description covers the essential purpose and output fields (bids and states). It could be enhanced by mentioning pagination or typical response structure, but it is largely complete for a straightforward list tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with all parameters having clear descriptions. The tool description adds no additional parameter information, so it meets the baseline expectation without adding extra value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the verb 'List', the resource 'Sponsored Products targeting clauses', and includes the types (product, category, auto-targeting) and included fields (bids and states). It also notes the API version (v3), distinguishing it from sibling tools like sp_list_keywords or sp_list_campaigns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not provide any guidance on when to use this tool versus alternatives. It lacks explicit context for when to choose this over siblings like sp_list_keywords or sp_list_campaigns, and does not mention any prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with clear prefixes (amc_, dsp_, sb_, sd_, sp_) and descriptive verbs (create, list, get, download). No two tools are ambiguous; even similar listing tools differ by ad product type.

Naming Consistency4/5

Most tools follow a consistent pattern: domain prefix (e.g., amc_, dsp_, sp_) + verb + noun. The only slight deviation is 'health_check', which uses noun_noun instead of verb_noun, but it's a common exception. Overall, naming is predictable and well-structured.

Tool Count5/5

With 23 tools covering AMC workflows, multiple ad product types (Sponsored Products, Brands, Display), DSP, and general profile/health, the number is well-scoped. Each tool earns its place, and there is no bloat or redundancy.

Completeness3/5

The tool surface is strong for listing and reporting but lacks mutation operations (create, update, delete) for campaigns, ad groups, keywords, and targets. There are no tools to manage budgets or bids, which are essential for advertising management, leaving notable gaps.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    F
    maintenance
    Enables users to analyze, manage, and optimize digital advertising campaigns through natural language conversations in Claude, offering performance insights, interactive visualizations, and campaign management for platforms like Amazon Ads.
    4
  • F
    license
    B
    quality
    C
    maintenance
    Enables natural language querying of marketing analytics across Google Search Console, GA4, Google Ads, HubSpot, and Bing. Provides tools for search queries, traffic, campaign performance, and composite cross-platform rollups.
    79
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables querying ad campaign performance and setup across Meta, TikTok, and Google Ads using natural language through AI agents.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Imsamiullah09/amazon-ads-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server