Skip to main content
Glama

Easyparser — Amazon Product & Seller Data

get_bulk_job_items

Read-only

Inspect the individual items inside a bulk job: each item's input value (ASIN, keyword, seller ID...), its status (success/failed/invalid/pending/processing), error message if it failed, credit cost, and completion time.

Use this tool to debug a job after list_bulk_jobs shows failed_items or invalid_items > 0 — filter with status='failed' or status='invalid' to see exactly which inputs failed and why. Use search_key to locate one specific ASIN inside a large job. The item's item_id can be used with the Data Service (GET /v1/queries/{id}) to fetch its parsed result.

This tool is free of per-call credits (monitoring endpoints do not consume credits).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number. Default 1.
limitNoItems per page (max 1000). Default 100.
statusNoFilter items by outcome. Use 'failed' or 'invalid' to debug a partial_success job; omit to see everything.
date_toNoISO date upper bound.
group_idYesThe job's group_id — get it from list_bulk_jobs (each job row has one). Identifies which job's items to inspect.
date_fromNoISO date lower bound, e.g. 2026-08-01.
search_keyNoSearch within item values (e.g. a specific ASIN) to find one item in a large job.
sort_directionNoSort by creation time. 'desc' (newest first) is default.desc

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description does not need to prove the operation is safe. It adds valuable non-obvious behavior beyond annotations: the tool is free of per-call credits and monitoring endpoints do not consume credits. It also clarifies what statuses and fields the response contains.

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 compact and well-structured: purpose first, then usage workflow, then a cost note. Every sentence adds practical value, and the key workflow is front-loaded. No filler or repetition of schema content.

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?

Even without an output schema, the description names what each item contains, explains how to filter and debug, notes the free-of-charge behavior, and links the item_id to a downstream use. Given the tool's moderate complexity, this is sufficient for an agent to select and invoke it correctly.

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 100%, so the schema already documents all parameters. The description adds contextual meaning: group_id comes from list_bulk_jobs, status='failed'/'invalid' is for debugging partial_success jobs, and search_key finds a specific ASIN in a large job. This goes beyond what the schema alone provides.

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 a specific verb and resource: 'Inspect the individual items inside a bulk job' and enumerates exactly what each item exposes (input value, status, error message, credit cost, completion time). It clearly differentiates from list_bulk_jobs by focusing on item-level inspection rather than job-level summaries.

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?

Gives explicit when-to-use guidance: debug a job after list_bulk_jobs shows failed_items or invalid_items > 0, filter by status='failed' or 'invalid', and use search_key to locate a specific ASIN. It also ties the resulting item_id to a downstream Data Service call, so an agent knows exactly how to proceed.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool maps to a distinct resource or action, and overlapping data is carefully disambiguated in the descriptions—e.g., get_product_detail includes BSR and dimensions, but get_bestseller_rank and get_package_dimensions are explicitly positioned as narrower alternatives. The bulk-job tools also form a clear pipeline with no realistic confusion between listing jobs, inspecting items, fetching item data, and checking webhook logs.

Naming Consistency4/5

The dominant get_* pattern is consistent for data retrieval, and list_* is used for collection-style endpoints. Minor deviations like check_credits, lookup_product, and search_products are understandable but break the strict verb_noun consistency enough to prevent a perfect score.

Tool Count4/5

At 17 tools, the server is slightly above the ideal 3-15 range, but the count is justified by the breadth of the domain: product details, offers, sales history, seller intelligence, bulk job monitoring, account credits, and error logs. Each tool earns its place, and the heavier count does not feel bloated.

Completeness4/5

Real-time product and seller data coverage is strong, including search, barcode lookup, product detail, offers, BSR, dimensions, sales history, seller profile, seller products, and seller feedback. The main gap is that bulk jobs can be listed and inspected but there is no tool to create or submit a new bulk job from the MCP server, leaving that workflow incomplete.