Skip to main content
Glama

Moltline Dropship Economics

Server Details

Margin, lead time, SKU mapping and price-ladder maths for dropshipping. 4 of 6 free.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
GarphenGate/moltline-mcp
GitHub Stars
0
Server Listing
moltline-mcp

TDQS

A4.5/5.0

Scored across 6 tools

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.

Available Tools

6 tools
lead_timeLead TimeA
Read-onlyIdempotent
Inspect

Turn supplier and transit times into a date you can promise. FREE.

Adds a buffer, because the number a supplier quotes is their best case and the date you publish is a commitment. Typical input {"supplier_days": 3, "transit_days": 12, "order_date": "2026-08-20"} returns {"total_days": 17, "delivery_date": "2026-09-06", "promise_date": "2026-09-09", "advice": "..."}.

Use when writing a shipping policy or answering "when will it arrive". Not for what the shipping costs — that is the shipping server. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "order_date must be YYYY-MM-DD, e.g. 2026-08-20"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
order_dateNoStart date as YYYY-MM-DD, e.g. "2026-08-20". Defaults to today when omitted.
buffer_daysNoExtra days added before the date you publish. Default 2.
transit_daysYesDays in transit from despatch to the customer.
supplier_daysYesDays from your order to the supplier despatching it.
working_days_onlyNoWhen true, count supplier and transit days as Monday-Friday only. Default false.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.8/5.0
Behavior5/5

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

Beyond the annotations (readOnly, idempotent), the description adds concrete behavioral context: never raises a protocol error, returns an error object with corrective guidance, and explicitly confirms that retrying is safe. This significantly exceeds what annotations already provide.

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 longer than average but every sentence adds value (purpose, usage, example, error handling, safety). The 'FREE' note is unnecessary noise but doesn't obscure the core content. Format is front-loaded with purpose and example.

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's moderate complexity (5 params, output schema), the description covers all key aspects: calculation logic, example output, error behavior, idempotency, and usage context. No significant gaps remain.

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 baseline is 3. The description adds a concrete example with typical inputs and outputs, clarifying the buffer concept and error format, which helps agents understand parameter relationships 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's function: turning supplier and transit times into a promise date, with a specific example. It distinguishes itself from siblings by explicitly saying it is not for shipping costs and pointing to a separate shipping server.

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?

Provides explicit when-to-use guidance ('when writing a shipping policy or answering when will it arrive') and an explicit exclusion ('Not for what the shipping costs'), which clearly differentiates it from related tools.

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

margin_checkMargin CheckA
Read-onlyIdempotent
Inspect

Show what one sale actually leaves after every cost. FREE.

Subtracts supplier cost, shipping, payment fees, the ad spend that found the buyer, and anything else — then reports the break-even price so you know how much room there is. Typical input {"sell_price": 39.99, "supplier_cost": 12.4, "shipping_cost": 4.2, "ad_cost_per_order": 9} returns {"revenue": 39.99, "total_cost": 27.06, "profit": 12.93, "margin_pct": 32.33, "markup_pct": 222.5, "break_even_price": 27.06, "biggest_cost": "supplier_cost"}.

Use before listing a product. Not for a whole tiered price list — that is price_ladder — and not for the effect of returns, which is returns_impact. 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
other_costNoAnything else per order: packaging inserts, app fees, support time. Default 0.
sell_priceYesWhat the customer pays, excluding tax. Must be above 0.
shipping_costNoShipping you absorb per order. Default 0.
supplier_costYesWhat the supplier charges you per unit.
payment_fee_pctNoProcessor percentage fee. Default 2.9 — a common published rate, not a statement about your account.
ad_cost_per_orderNoBlended acquisition cost per order. Default 0, but leaving it at 0 is the most common way this maths lies.
payment_fee_fixedNoProcessor fixed fee per transaction. Default 0.30.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare read-only and idempotent behavior, but the description adds valuable context beyond annotations: it details error handling ('never raises a protocol error — it returns {"error": ...}'), retry safety, and a caveat about ad_cost_per_order defaulting to 0 being misleading. This goes above and 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.

Conciseness4/5

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

The description is well-structured and front-loaded with the core purpose, followed by an example, usage guidance, and error behavior. Every sentence earns its place; the 'FREE.' is slightly extraneous marketing but not distracting. The length is justified given the tool's complexity.

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?

The description is complete for a calculator-style tool: it explains the math, shows a full input/output example, covers error handling, and gives usage context. Combined with the rich annotations and output schema, no critical information is missing for an agent to invoke this tool 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?

With 100% schema description coverage, the schema already documents each parameter's meaning. The description adds a concrete typical input example and highlights a common pitfall (ad_cost_per_order default), which enhances understanding beyond the schema alone. It stops short of being exhaustive but is clearly helpful.

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 what the tool does: 'Show what one sale actually leaves after every cost' and details the calculations (subtracting costs, break-even price). It explicitly distinguishes itself from siblings: 'Not for a whole tiered price list — that is price_ladder — and not for the effect of returns, which is returns_impact.'

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?

Explicit when-to-use guidance is given: 'Use before listing a product.' It also names specific alternatives for scenarios the tool does not handle (price_ladder for tiered pricing, returns_impact for returns), making the decision boundary clear.

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

moq_plannerMoq PlannerA
Read-onlyIdempotent
Inspect

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.

ParametersJSON 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

ParametersJSON Schema
NameRequiredDescription

No output parameters

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.

price_ladderPrice LadderA
Read-onlyIdempotent
Inspect

Work backwards from the margin you want to the price you must charge. FREE.

Solves for price including the percentage fee, which is why it is not simply cost divided by one minus margin. Typical input {"supplier_cost": 12.4, "target_margins_pct": [30, 40, 50], "shipping_cost": 4.2} returns {"rows": [{"target_margin_pct": 30, "price": 25.99, "total_cost": 17.65, "profit": 8.34, "actual_margin_pct": 32.07}, ...]}.

Use when setting a price list. Not for checking one price you already have — that is margin_check. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "target_margins_pct must contain at least one margin"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
charm_endingNoForce prices to end in these cents, e.g. ".99". Pass an empty string for exact prices. Default ".99"..99
shipping_costNoShipping you absorb per order. Default 0.
supplier_costYesPer-unit cost from the supplier. Must be above 0.
payment_fee_pctNoProcessor percentage fee. Default 2.9.
payment_fee_fixedNoProcessor fixed fee. Default 0.30.
target_margins_pctYesMargins to solve for, e.g. [30, 40, 50]. Each must be above 0 and below 100.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior4/5

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

The description adds context beyond annotations: it notes the fee inclusion nuance, error-handling behavior ('never raises a protocol error — returns {error}'), and idempotent/read-only guarantee (though idempotent/readOnly are already in annotations). The error behavior and fee subtlety are extra value. 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.

Conciseness4/5

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

The description is a single well-structured paragraph that front-loads the primary purpose as an imperative, then gives usage guidance, an example, and error behavior. No fluff—every sentence adds information. Slightly long but justified by complexity.

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's complexity (6 params, some interdependent fee logic), the description covers the core formula, provides a concrete input/output example, explains the error behavior, and explicitly states the read-only/idempotent nature (authoritative even if annotations also mention it). With an output schema presentished, the example covers return structure. This is fully sufficient for an agent to invoke 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 coverage is 100% with detailed descriptions, so baseline is 3. The description adds value by explaining the fee calculation nuance (not simply cost/(1-margin)) and providing a concrete example input that clarifies how parameters combine. This pushes it above baseline.

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 an explicit purpose: 'Work backwards from the margin you want to the price you must charge. FREE.' It clearly names the tool's function and distinguishes it from sibling margin_check by saying 'Not for checking one price you already have — that is margin_check.' The verb-resource pairing is specific.

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?

Directly states when to use: 'setting a price list' and explicitly excludes when not to use: 'Not for checking one price you already have — that is margin_check.' This is the clearest form of usage guidance.

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

returns_impactReturns ImpactA
Read-onlyIdempotent
Inspect

Show what a return rate does to a margin that looked fine. PREMIUM (license).

A 10% return rate does not cost 10% of profit. A returned order gives back the refund, adds inbound shipping, and recovers only the goods — never the advertising that found the buyer. Typical input {"sell_price": 39.99, "unit_profit": 13.23, "unit_cost": 12.4, "return_rate_pct": 8, "restock_pct": 70, "return_shipping": 6} returns {"cost_per_return": 37.31, "effective_profit": 10.25, "profit_lost_pct": 22.56, "break_even_return_rate_pct": 35.46}.

Use when a category's returns are high enough to argue about. Not for the pre-returns margin itself — 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
unit_costYesWhat the goods themselves cost you — the only part a restocked unit gives back. Advertising and fees do not return.
refund_pctNoPercentage of the sale price refunded, e.g. 100 for a full refund or 80 when a restocking fee is kept. Default 100.
sell_priceYesPrice the customer paid.
restock_pctNoPercentage of returned units resellable at full price. Default 0, the conservative case.
unit_profitYesProfit on one kept sale, from margin_check. May be negative, which the result will make obvious.
return_rate_pctYesPercentage of orders returned, e.g. 8.
return_shippingNoWhat an inbound return costs you. Default 0.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior5/5

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

The description discloses error handling ('never raises a protocol error — it returns an error object') and idempotency/read-only nature ('Every call is read-only and idempotent'), which align with the annotations. This adds useful behavioral context beyond the annotations themselves.

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

Conciseness3/5

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

The description is somewhat verbose and includes extraneous content like 'PREMIUM (license)' and repetitive phrasing. While it is structured (purpose, example, usage, errors), it could be more concise and focused.

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 (7 parameters, output schema present), the description provides a typical input/output example, usage guidance, and error behavior. The schema covers parameter details, so the description sufficiently rounds out the context without being exhaustive.

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 parameter descriptions (100% coverage), so the baseline is 3. The description adds a concrete example with values and output, illustrating how parameters interact, which enhances understanding beyond the schema alone.

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?

The description clearly states the tool calculates the impact of return rates on profit margins, with an example input/output. It also distinguishes itself from the sibling tool 'margin_check' by indicating it is not for pre-returns margin. However, the phrasing is somewhat poetic and includes irrelevant 'PREMIUM (license)' text.

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?

It explicitly gives when to use: 'Use when a category's returns are high enough to argue about' and when not to use: 'Not for the pre-returns margin itself — that is margin_check.' This provides clear decision guidance relative to sibling tools.

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

sku_map_checkSku Map CheckA
Read-onlyIdempotent
Inspect

Find the breaks in a supplier-to-store SKU map before they ship. FREE.

Two store SKUs pointing at one supplier SKU is usually intentional; two supplier SKUs claiming one store SKU is not, and it sends the wrong item. Typical input {"mapping": {"STORE-1": "SUP-A", "STORE-2": "SUP-A", "STORE-3": ""}} returns {"ok": false, "count": 3, "empty_targets": ["STORE-3"], "shared_supplier_skus": {"SUP-A": ["STORE-1", "STORE-2"]}, "whitespace_issues": []}.

Use before importing a mapping or handing one to a fulfilment app. Not for validating Shopify's CSV columns — that is the shopify server. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "mapping must contain at least one store SKU"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
mappingYesStore SKU to supplier SKU, e.g. {"STORE-1": "SUP-A"}. At least one entry.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

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, idempotentHint=true, and destructiveHint=false, so the description rightly doesn't relitigate those. It adds genuine value with the error contract (never raises a protocol error, returns a structured error object) and the retry-safety framing. Minor point: the 'read-only and idempotent' sentence mostly restates annotations, but the error-behavior detail justifies a 4.

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?

Efficiently front-loaded with a value-proposition hook, then organized into clean paragraphs: rule explanation, worked example, usage timing, and error contract. Every sentence adds information; nothing is redundant, and the only blemish is the cryptic standalone 'FREE.' that appears to be a leftover artifact.

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 single-parameter validation tool with an output schema and comprehensive annotations, the description leaves nothing unresolved: it explains the core rule, shows a realistic request/response interaction, gives the trigger conditions, the exclusion, the error shape, and safety guarantees. No meaningful gap for the agent's decision-making.

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 baseline is 3. The described input/output example earns the extra point by showing what counts as a violation (empty string, duplicate supplier SKUs), which enriches the otherwise minimal 'mapping' parameter definition and sets correct expectations for the response shape.

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 opening sentence uses a specific verb+resource ('Find the breaks in a supplier-to-store SKU map'), and the one-to-many vs many-to-one rule clarifies exact semantics. The purpose is completely distinct from all sibling tools (lead_time, margin_check, moq_planner, price_ladder, returns_impact), leaving no room for confusion.

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?

Provides explicit when-to-use guidance ('Use before importing a mapping or handing one to a fulfilment app') and an explicit when-not-to statement with a named alternative ('Not for validating Shopify's CSV columns — that is the shopify server'). This is a textbook example of exclusion-based differentiation.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updates
    • First observedlead_time
    • First observedmargin_check
    • First observedmoq_planner
    • First observedprice_ladder
    • First observedreturns_impact
    • First observedsku_map_check

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    C
    quality
    B
    maintenance
    Deterministic Odoo ERP calculators: implementation, migration and upgrade cost, ROI and TCO, US/Canada/EU sales tax and VAT, Canadian payroll source deductions, and inventory maths (reorder point, safety stock, EOQ, landed cost, OEE). 24 tools, each a pure function, the numbers are arithmetic rather than a model's guess. Hosted remote server, no install and no API key; a stdio bridge is included
    24
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    AI-powered e-commerce research tools via MCP. Search Amazon, Alibaba & AliExpress for winning products, vet suppliers, and calculate FBA margins. 19 tools, free tier available.
    53
    4
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Connects Amazon Seller Central and Amazon Advertising to any MCP client, with a settlement-accurate P&L underneath: every fee, refund and reimbursement as Amazon actually posted it, so contribution margin and breakeven are per product, per marketplace, per day. 107 tools spanning P&L, full Sponsored Products/Brands/Display management, Search Query Performance and Brand Analytics, inventory and for
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.