Moltline Dropship Economics
Server Details
Margin, lead time, SKU mapping and price-ladder maths for dropshipping. 4 of 6 free.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- GarphenGate/moltline-mcp
- GitHub Stars
- 0
- Server Listing
- moltline-mcp
TDQS
Scored across 6 tools
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.
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.
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.
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 toolslead_timeLead TimeARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| order_date | No | Start date as YYYY-MM-DD, e.g. "2026-08-20". Defaults to today when omitted. | |
| buffer_days | No | Extra days added before the date you publish. Default 2. | |
| transit_days | Yes | Days in transit from despatch to the customer. | |
| supplier_days | Yes | Days from your order to the supplier despatching it. | |
| working_days_only | No | When true, count supplier and transit days as Monday-Friday only. Default false. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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 CheckARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| other_cost | No | Anything else per order: packaging inserts, app fees, support time. Default 0. | |
| sell_price | Yes | What the customer pays, excluding tax. Must be above 0. | |
| shipping_cost | No | Shipping you absorb per order. Default 0. | |
| supplier_cost | Yes | What the supplier charges you per unit. | |
| payment_fee_pct | No | Processor percentage fee. Default 2.9 — a common published rate, not a statement about your account. | |
| ad_cost_per_order | No | Blended acquisition cost per order. Default 0, but leaving it at 0 is the most common way this maths lies. | |
| payment_fee_fixed | No | Processor fixed fee per transaction. Default 0.30. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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 PlannerARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| moq | Yes | The supplier's minimum order quantity, in units. | |
| unit_cost | Yes | Cost per unit at the MOQ. Must be above 0. | |
| safety_weeks | No | Weeks of demand held as buffer against a late delivery. Default 2. | |
| cash_available | Yes | Cash you can commit to stock right now. | |
| lead_time_days | No | Days from placing the order to stock being sellable. Default 30. | |
| monthly_demand | Yes | Units you expect to sell per month. Must be above 0. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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 LadderARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| charm_ending | No | Force prices to end in these cents, e.g. ".99". Pass an empty string for exact prices. Default ".99". | .99 |
| shipping_cost | No | Shipping you absorb per order. Default 0. | |
| supplier_cost | Yes | Per-unit cost from the supplier. Must be above 0. | |
| payment_fee_pct | No | Processor percentage fee. Default 2.9. | |
| payment_fee_fixed | No | Processor fixed fee. Default 0.30. | |
| target_margins_pct | Yes | Margins to solve for, e.g. [30, 40, 50]. Each must be above 0 and below 100. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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 ImpactARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| unit_cost | Yes | What the goods themselves cost you — the only part a restocked unit gives back. Advertising and fees do not return. | |
| refund_pct | No | Percentage of the sale price refunded, e.g. 100 for a full refund or 80 when a restocking fee is kept. Default 100. | |
| sell_price | Yes | Price the customer paid. | |
| restock_pct | No | Percentage of returned units resellable at full price. Default 0, the conservative case. | |
| unit_profit | Yes | Profit on one kept sale, from margin_check. May be negative, which the result will make obvious. | |
| return_rate_pct | Yes | Percentage of orders returned, e.g. 8. | |
| return_shipping | No | What an inbound return costs you. Default 0. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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 CheckARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| mapping | Yes | Store SKU to supplier SKU, e.g. {"STORE-1": "SUP-A"}. At least one entry. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
6 tool updates
- First observed
lead_time - First observed
margin_check - First observed
moq_planner - First observed
price_ladder - First observed
returns_impact - First observed
sku_map_check
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
E-commerce autonomy for dropshippers — listings, SEO, catalog audit, niche & ad intel.
Processor fees, charge-to-net, invoice totals and proration. 3 of 6 tools free.
Dimensional weight, parcel fit, landed cost and freight class. 4 of 6 tools free.
Deep purchase intelligence for agents and apps: live prices, landed cost, trust scores. Free.
Related MCP Servers
- AlicenseAqualityBmaintenanceMulti-channel inventory intelligence for Shopify and Amazon sellers. 28 tools for stockout risk, demand forecasts, purchase order management, and sales analytics — with human-in-the-loop safeguards.501032MIT
- AlicenseCqualityBmaintenanceDeterministic 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 included24MIT
- AlicenseNot gradedqualityCmaintenanceAI-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.534MIT
- AlicenseNot gradedqualityBmaintenanceConnects 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 for1MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.