Skip to main content
Glama

ForthClear Liquidation Marketplace

Bulk update listing prices or MOQ

bulk_update_listings
Destructive

Bulk update prices or minimum order quantities across up to 200 of the calling seller's product listings. Thin adapter over POST /api/products/bulk-update-price and /bulk-update-moq — same seller-ownership filter and per-product validation. Choose mode='price_set' (value=USD), 'price_percent_increase' / 'price_percent_decrease' (value=percent), or 'moq_set' (value=integer units).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeYesWhat to change and how: price_set writes an absolute USD price, price_percent_increase / price_percent_decrease adjust the current price by a percentage, moq_set writes a minimum order quantity.
valueYesUSD price for price_set, percent (0-1000) for percent modes, integer units (1-999999) for moq_set.
product_idsYesForthClear product ids to update (max 200/request).

TDQS

A4/5.0
Behavior4/5

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

Annotations already carry destructiveHint=true and idempotentHint=false, so the safety profile is covered. The description adds genuine value beyond annotations: the 200-per-request limit, the seller-ownership filter, per-product validation, and the fact that it is a thin adapter over two specific endpoints, which tells the agent the behavior mirrors those APIs. It does not disclose partial-failure semantics or what happens when some products fail validation, a gap for a destructive bulk 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?

Roughly 60 words across three sentences, with the core purpose front-loaded in sentence one, mechanics in sentence two, and mode selection guidance in sentence three. Every sentence earns its place; no filler or repetition of the title. Minor deduction only because the adapter/endpoint detail in sentence two is somewhat implementation-specific, though still useful.

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?

For a destructive bulk mutation with no output schema, the definition covers invocation well (what, scope, cap, modes, validation) but omits the response shape and partial-failure behavior — an agent cannot know whether a bulk call is all-or-nothing or per-item, nor what the return payload reports. These are material gaps given destructiveHint=true and the absence of an output schema.

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% — mode, value, and product_ids all carry descriptive text including the mode/value pairing and bounds. The description's third sentence reinforces the mode-to-value mapping ('price_set (value=USD)', 'moq_set (value=integer units)') but adds nothing the schema does not already state. Baseline 3 is appropriate since the schema carries the load and the description only confirms it.

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 first sentence names a specific verb ('Bulk update'), a concrete resource ('product listings'), and exact fields (prices or minimum order quantities), plus the 200-listing ceiling and owner scope ('calling seller's'). It is immediately distinguishable from every sibling: none of bulk_export_orders, bulk_mark_shipped, or create_listing cover price/MOQ mass mutation.

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?

Clear context is established: the operation applies only to the calling seller's own listings, caps at 200 per request, and reuses the same ownership filter and per-product validation as the underlying endpoints. The mode descriptions effectively tell the agent when each call form is appropriate. It stops short of explicitly naming alternatives or stating when not to use this tool, so no exclusions are given.

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