mcpbeat Sign in

Moltline Shipping Maths MCP Server

answering

Moltline Shipping Maths is answering right now. Last checked 12 min ago. It exposes 6 tools.

Dimensional weight, parcel fit, landed cost and freight class. 4 of 6 tools 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
323 ms
Response time
average over 24h
open, no key
Access
streamable-http

Moltline Shipping Maths 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 shipping --transport http https://mcp.moltlinestudio.com/shipping
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "shipping": {
      "url": "https://mcp.moltlinestudio.com/shipping"
    }
  }
}
~/.codex/config.toml
[mcp_servers.shipping]
url = "https://mcp.moltlinestudio.com/shipping"
.cursor/mcp.json
{
  "mcpServers": {
    "shipping": {
      "url": "https://mcp.moltlinestudio.com/shipping"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "shipping": {
      "url": "https://mcp.moltlinestudio.com/shipping"
    }
  }
}

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.

dim
dim_weight
Work out whether a parcel bills on its size or its weight. FREE. Carriers charge the greater of actual weight and dimensional weight, so a light bulky box costs more than the scale suggests. Typical input {"length": 18, "width": 12, "height": 10, "actual_weight": 6} returns {"cubic": 2160.0, "dim_weight": 15.54, "actual_weight": 6.0, "billable_weight": 15.54, "billed_on": "dimensional", "overage": 9.54, "divisor_used": 139.0, "note": "..."}. Use when deciding whether a smaller box is worth the packing effort, or why an invoice exceeded the scale weight. Not for choosing a box from a list of candidates — that is parcel_fit. 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": "custom_divisor must be greater than 0 when divisor is 'custom'"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
free
free_shipping_threshold
Find the order value at which free shipping stops costing you money. PREMIUM (license). Break-even is where the gross margin on the order covers the shipping you absorb. Typical input {"gross_margin_pct": 45, "ship_cost": 7.5, "current_aov": 38, "target_uplift_pct": 15} returns {"break_even": 16.67, "suggested_threshold": 43.7, "above_current_aov_by": 5.7, "rationale": "..."}. Use when setting or defending a free-shipping bar. Not for what shipping should cost when it is not free — that is rate_card. 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.
freight
freight_class
Derive a US LTL freight class from density. FREE. Density in pounds per cubic foot maps to a class on the published NMFC density scale. Typical input {"length": 48, "width": 40, "height": 36, "weight": 400} returns {"cubic_feet": 40.0, "density_pcf": 10.0, "density_class": "100", "caveat": "..."}. Use for a first estimate before a carrier quote. Not as a final classification: NMFC also weighs stowability, handling and liability, so a carrier can and does reclassify. 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": "dimensions produce zero volume"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
landed
landed_cost
Total what a unit really costs once freight, duty and fees are in. FREE. Duty is applied to goods value, tax to goods plus duty plus freight — the common import treatment — and the order is spelled out in the response so you can check it against your own broker's method. Typical input {"unit_cost": 8.5, "quantity": 200, "freight_total": 640, "duty_pct": 6.5, "tax_pct": 0} returns {"goods": 1700.0, "duty": 110.5, "freight": 640.0, "tax": 0.0, "total_landed": 2450.5, "landed_unit_cost": 12.25, ...}. Use before setting a price on imported stock. Not for the margin that price leaves you — that is the dropship server's 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.
parcel
parcel_fit
Pick the smallest box an item actually fits in, allowing for padding. FREE. Tries every rotation of the item against every box, so an item that only fits diagonally-oriented is still found. Typical input {"item_length": 10, "item_width": 6, "item_height": 4, "box_options": [[12, 9, 4], [14, 10, 6]]} returns {"fits": [{"box": [14, 10, 6], "cubic": 840.0, "slack": [2, 2, 0]}], "best": [14, 10, 6], "rejected": [...]}. Use when choosing packaging from stock. Not for what the carrier will bill once a box is chosen — that is dim_weight. 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": "box_options must contain at least one [l, w, h] box"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
rate
rate_card
Turn a cost model into a customer-facing weight-banded price table. PREMIUM (license). Prices each band at its upper bound so you never under-charge inside a band, then rounds up to a tidy increment. Typical input {"base_cost": 4.2, "cost_per_lb": 0.65, "bands_lb": [1, 2, 5, 10], "margin_pct": 25} returns {"bands": [{"up_to_lb": 1, "cost": 4.85, "price": 6.5}, ...], "over_top_band": "quote individually"}. Use when publishing shipping prices customers pay. Not for the cut-off at which shipping becomes free — that is free_shipping_threshold. 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": "bands_lb must contain at least one upper bound"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

Endpoints

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

Alternatives to Moltline Shipping Maths

same job, measured the same way
Moltline Dropship Economics
by moltlinestudio

Margin, lead time, SKU mapping and price-ladder maths for dropshipping. 4 of 6 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
Moltline Business Suite
by moltlinestudio

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

8 tools answering
Moltline TimeOps
by moltlinestudio

Business days, meeting overlap and recurrence expansion, deterministic. 3 of 5 tools free.

5 tools answering
Freight Pulse
by baneado98

Ocean & multimodal freight intelligence: rates, landed cost, transit, customs, risk, ship decisions

answering
Writing Clinic
by stockandawe

Free MCP tool: paste your writing, get a one-line diagnosis and a tightened rewrite.

37 installs/wk local only
Moltline Educator Toolkit
by moltlinestudio

8 curriculum, classroom, accommodations and exam-prep skill products. 5 of 7 free.

7 tools answering

Moltline Shipping Maths — questions

Answers built from our own checks of this server.

What can Moltline Shipping Maths do?
It exposes 6 tools, read directly from the server on our last check. Among them: dim_weight, free_shipping_threshold, freight_class, landed_cost, parcel_fit, rate_card. 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 Shipping Maths 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 323 ms. The bar chart above shows every period we have measured.
How do I connect Moltline Shipping Maths?
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 Shipping Maths need an API key?
No. Moltline Shipping Maths 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 Shipping Maths?
It answers our handshake in 323 ms on average, which is faster than 54% of all working MCP servers we measure. The comparison comes from our own checks across the whole registry, every 15 minutes.