Skip to main content
Glama

Moltline Dropship Economics

Moq Planner

moq_planner
Read-onlyIdempotent

Decide how much to order against demand, lead time and the cash you have. PREMIUM (license).

A minimum order quantity is a cash-flow decision disguised as a purchasing one. Typical input {"unit_cost": 4.2, "moq": 500, "monthly_demand": 120, "cash_available": 3000, "lead_time_days": 45} returns {"moq_cost": 2100.0, "months_of_cover": 4.17, "affordable": true, "cash_after": 900.0, "reorder_point_units": 236, "verdict": "..."}.

Use before committing to a supplier's minimum. Not for the margin each unit earns — that is margin_check. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
moqYesThe supplier's minimum order quantity, in units.
unit_costYesCost per unit at the MOQ. Must be above 0.
safety_weeksNoWeeks of demand held as buffer against a late delivery. Default 2.
cash_availableYesCash you can commit to stock right now.
lead_time_daysNoDays from placing the order to stock being sellable. Default 30.
monthly_demandYesUnits you expect to sell per month. Must be above 0.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.9/5.0
Behavior5/5

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

The annotations already declare readOnlyHint and idempotentHint, but the description adds critical behavioral detail: 'Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.' This goes beyond the annotations by detailing error handling and retry safety, which is valuable context for an agent.

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 well-structured: a clear opening purpose, a practical example, usage guidance, error handling, and retry advice. Each sentence adds value—no verbosity or repetition. It is front-loaded with the most critical information (purpose) and then progressively adds detail, making it easy to scan.

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 the tool has 6 parameters (including optional ones), an output schema (not shown but indicated), and annotations covering safety, the description is remarkably complete. It covers the decision context, an example output, error behavior, and where it fits relative to siblings. There are no significant gaps; even the premium licensing note is a minor extra. This is comprehensive for a tool of this complexity.

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 baseline is 3. The description adds a concrete example (typical input and output) that clarifies how the parameters interact (e.g., unit_cost, moq, cash_available, lead_time_days produce moq_cost, months_of_cover, etc.). This example enriches parameter understanding beyond the schema's individual descriptions, making the tool's usage more intuitive. However, it does not detail individual parameter nuances, so a 4 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?

The description opens with a clear statement of purpose: 'Decide how much to order against demand, lead time and the cash you have.' It specifies the resource (how much to order) and the criteria. It also distinguishes itself from a sibling tool explicitly: 'Not for the margin each unit earns — that is margin_check.' This is specific and unambiguous.

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?

The description provides explicit usage context: 'Use before committing to a supplier's minimum.' It also states an alternative tool for a different purpose ('margin_check'). This directly addresses when to use this tool and when not to, with a named alternative, exceeding the minimum requirement.

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.5/5.0
Disambiguation5/5

Each tool targets a distinct economic decision: lead_time for delivery dates, margin_check for single-sale profitability, moq_planner for order quantity, price_ladder for price setting, returns_impact for return rate effects, and sku_map_check for SKU mapping validation. Cross-references explicitly point out which tool to use for adjacent concerns, eliminating ambiguity.

Naming Consistency4/5

All tool names follow a consistent noun-based pattern (lead_time, margin_check, moq_planner, price_ladder, returns_impact, sku_map_check) with descriptive suffixes. The naming is uniform and predictable, though the pattern is noun_verb rather than verb_noun, which is a minor deviation from the most common convention.

Tool Count5/5

Six tools is well-scoped for a dropship economics server. Each tool covers a distinct aspect of the domain (delivery, margin, ordering, pricing, returns, SKU mapping) without redundancy or bloat. The count is appropriate for the stated purpose.

Completeness4/5

The tool set covers the core economic decisions in dropshipping: delivery promises, margin analysis, order quantity planning, price laddering, returns impact, and SKU mapping validation. Minor gaps exist (e.g., no tool for supplier comparison or multi-product portfolio analysis), but the surface is largely complete for the stated domain.

Resources