Skip to main content
Glama

ForthClear Liquidation Marketplace

Bulk mark orders shipped

bulk_mark_shipped
Idempotent

Mark up to 200 of the calling seller's orders as shipped, optionally writing a shared tracking number / URL / carrier to every order. Thin adapter over POST /api/seller/orders/bulk-mark-shipped — same per-order ownership filter, idempotent re-runs, auto-detected carrier when only a tracking number is supplied. Returns per-order success/failure buckets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
order_idsYesOrder ids belonging to the calling seller (max 200/request). Orders owned by anyone else are skipped.
carrier_nameNoCarrier for the shipment. Omit to infer it from tracking_number.
tracking_urlNoTracking URL written to every listed order.
tracking_numberNoTracking number written to every listed order. Supplying this without carrier_name auto-detects the carrier.

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations, the description discloses meaningful behaviors: idempotent re-runs, per-order ownership filtering, auto-detection of carrier when only a tracking number is supplied, shared tracking values written to every order, and per-order success/failure buckets in the response. This adds substantial context beyond the idempotentHint and destructiveHint 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?

Three dense sentences front-load the primary action, then add endpoint mapping, behavioral guarantees, and return format. Every sentence earns its place and there is 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?

For this complexity level, the description is complete: it states the batch limit, ownership constraint, optional tracking behaviors, idempotency, and the response summary. Since there is no output schema, the explicit mention of 'per-order success/failure buckets' gives the agent enough expectation of the return shape without over-specifying.

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?

The schema already covers all parameter descriptions at 100%, giving a baseline of 3. The description adds value by explaining the shared behavior of the optional tracking fields and the auto-detection relationship between carrier_name and tracking_number, which is not fully explicit in the schema alone.

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 and resource: 'Mark up to 200 of the calling seller's orders as shipped', which clearly distinguishes this bulk order action from sibling tools like bulk_export_orders and bulk_update_listings. It also specifies key constraints such as ownership, batch size, and optional tracking fields.

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 gives clear context for when to use the tool: marking the caller's orders as shipped in bulk, with re-runs being idempotent and ownership enforced. It does not explicitly name alternatives or state when not to use the tool, but no sibling tool competes for the same action.

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

A3.6/5.0
Disambiguation4/5

Most tools target distinct resource/action pairs: search vs details, quote request vs response, bulk export vs bulk ship. The main overlaps are get_quote_requests vs seller_inbox_summarise and quick_buy vs request_quote, but their descriptions provide enough boundary to avoid serious misselection.

Naming Consistency4/5

The majority of tools follow a verb_noun pattern with a clear bulk_ prefix for bulk operations. Minor deviations like quick_buy and seller_inbox_summarise (object before verb) slightly break the pattern, but the naming remains broadly predictable.

Tool Count5/5

12 tools is well within the ideal range for a two-sided marketplace server. Each tool covers a meaningful seller or buyer workflow without feeling redundant or bloated.

Completeness3/5

Core workflows are covered: search, product details, quote negotiation, listing creation, bulk updates, bulk shipping, and export. Notable gaps include no single listing delete/update, no buyer-facing order or quote status tool, and no action to resolve reported issues surfaced by seller_inbox_summarise.

Resources