mcpbeat Sign in

Moltline Dropship Economics MCP Server

answering

Moltline Dropship Economics is answering right now. Last checked 12 min ago. It exposes 6 tools.

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

Uptime history 12 days of history · worst day 98%
12 days agonow
98.9%
Uptime 24h
90 of 91 checks
6
Tools
read from the server
367 ms
Response time
average over 24h
open, no key
Access
streamable-http

Moltline Dropship Economics does not always answer

Over the last week it answered 99.8% of our checks. We check every 15 minutes, so you hear about the next outage within the hour — not from your users.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 12 min ago.

run in your terminal
claude mcp add dropship --transport http https://mcp.moltlinestudio.com/dropship
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "dropship": {
      "url": "https://mcp.moltlinestudio.com/dropship"
    }
  }
}
~/.codex/config.toml
[mcp_servers.dropship]
url = "https://mcp.moltlinestudio.com/dropship"
.cursor/mcp.json
{
  "mcpServers": {
    "dropship": {
      "url": "https://mcp.moltlinestudio.com/dropship"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "dropship": {
      "url": "https://mcp.moltlinestudio.com/dropship"
    }
  }
}

Available tools 6

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

lead
lead_time
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": "<what is wrong and how to fix it>"} (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.
margin
margin_check
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": "<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.
moq
moq_planner
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": "<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.
price
price_ladder
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": "<what is wrong and how to fix it>"} (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.
returns
returns_impact
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": "<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.
sku
sku_map_check
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": "<what is wrong and how to fix it>"} (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.

Endpoints

URLTransportStateLatencyChecked
https://mcp.moltlinestudio.com/dropship streamable-http answering 490 ms 12 min ago

Alternatives to Moltline Dropship Economics

same job, measured the same way
Moltline Shipping Maths
by moltlinestudio

Dimensional weight, parcel fit, landed cost and freight class. 4 of 6 tools free.

6 tools answering
Moltline Vision Maths
by moltlinestudio

Image header probing, bbox conversion, resize plans and colour maths. 4 of 6 free.

6 tools answering
Moltline Merchant Maths
by moltlinestudio

Processor fees, charge-to-net, invoice totals and proration. 3 of 6 tools free.

6 tools answering
DSers Official MCP Server
by dsers

Official DSers MCP for dropshipping: import, edit, price, and publish products to Shopify and Wix.

answering
Moltline Business Suite
by moltlinestudio

30 finance, bookkeeping, legal-ops and SMB operations skill products. 6 of 8 tools free.

8 tools answering
Moltline Creator Studio
by moltlinestudio

20 blogging, brand-voice, copywriting, video and social skill products. 6 of 8 free.

8 tools answering
Moltline Shopify Prep
by moltlinestudio

Check a product CSV, handles, variant matrices and metafield keys. 4 of 6 free.

6 tools answering
Moltline Outbound Engine
by moltlinestudio

7 outreach, sequencing, call-coaching and CRM-hygiene skill products. 6 of 8 free.

8 tools answering

Moltline Dropship Economics — questions

Answers built from our own checks of this server.

What can Moltline Dropship Economics do?
It exposes 6 tools, read directly from the server on our last check. Among them: lead_time, margin_check, moq_planner, price_ladder, returns_impact, sku_map_check. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is Moltline Dropship Economics working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 90 of 91 checks got a reply (98.9%), average response time 367 ms. The bar chart above shows every period we have measured.
How do I connect Moltline Dropship Economics?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does Moltline Dropship Economics need an API key?
No. Moltline Dropship Economics completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 6 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is Moltline Dropship Economics?
It answers our handshake in 367 ms on average, which is faster than 48% of all working MCP servers we measure. The comparison comes from our own checks across the whole registry, every 15 minutes.