Load Planner MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Load Planner MCPPlan the optimal freight mode and packing for this order set."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
load-planner-mcp
A deterministic load-planning solver, plus an MCP stdio server that exposes it as two tools. The solver decides freight mode for a cohort of orders — all-air, consolidated sea-LCL, or full container — prices each option, and attaches a risk read (ETA percentiles, deadline-miss probability, CVaR of the delay tail).
What is in here
Path | Contents |
| 3D bin-packing (py3dbp): do the pallets fit a 20GP/40GP/40HC, and at what fill rate |
| Fixed-charge MILP over OR-Tools CP-SAT: cheapest feasible assignment per enumerated mode-pattern |
| Delay-distribution convolution: p50/p90 ETA, deadline-miss probability, CVaR(alpha) |
| Enumerates the cards, scores them on one identical vector, ranks them, picks a recommendation |
| A plain stdin/stdout JSON boundary, for hosts that prefer a child process to an import |
| The MCP stdio server: JSON-RPC 2.0, two tools, and |
| A synthetic 20-pallet cohort with a synthetic rate card, used by the tests |
The two sub-problems are layered rather than merged. Solving true 3D placement inside the MILP explodes combinatorially, so the packer runs first and hands CP-SAT a fill rate and a feasibility flag.
Related MCP server: freight-pulse
The two-tool contract
solve(problem) runs the solver and returns its output verbatim — not
reformatted, not rounded, not summarised — together with a result_id and a
SHA-256 content_hash of the result. The result is kept in an in-process store.
explain(result_id) returns a narration built from a fixed template whose slots
are filled from that stored result.
The split is the design. A language model calling this server chooses what to solve and puts the answer into words; it does not originate any figure. Three properties make that structural rather than aspirational:
explaintakes one opaque id and nothing else. Its input schema has a single property. It cannot be handed a rate, a weight or a deadline, so it cannot restate one.The stored record holds the solver result only.
solvediscards the problem payload once the solver has run. There is no field on the stored record that could carry an input value.There is no arithmetic on the
explainpath. Values are looked up by key and rendered as strings. Selecting the recommended card reads a flag the solver already set; it does not compare or compute.
verify_narration(narration, stored) turns the claim into a check. It scans the
text for digit runs and rejects any token absent from the stored result, so a
narration that rounds 11480.0 to "11500", converts 0.1246 to "12.46%", or adds
two stored costs together fails — each of those is a number the solver never
produced. A host can apply it to any narration before display, including one the
model wrote in its own words rather than one explain returned. explain runs
it on its own output before returning.
What the guard deliberately allows, so it is not mistaken for a stronger claim:
digits inside stored strings and dict keys count as present, because a narration
may quote those strings verbatim. "ortools-cpsat+py3dbp" admits 3, and the
field name eta_p90_days admits 90. It is a lexical check on numeric tokens,
not a proof of semantic correctness: a narration that attaches the right number
to the wrong label still passes.
Install
Python 3.10 or newer.
python -m venv .venv
./.venv/bin/pip install ortools py3dbp pytestOr install the package itself, which pulls the two runtime dependencies:
pip install -e .ortools is the CP-SAT engine; py3dbp is the 3D packer, MIT-licensed. The MCP
server adds nothing beyond the standard library — the stdio protocol surface is
small enough to implement directly, which keeps the dependency list auditable.
Run
The server speaks newline-delimited JSON-RPC 2.0 on stdin/stdout:
python -m solver_mcpThe solver is also usable without MCP, as a library or as a child process:
from load_planner import generate_scenarios
result = generate_scenarios(problem)cat fixtures/cohort_urgent.json | python -m load_planner.cliWiring into an MCP client
Any client that launches stdio servers takes a command and arguments. For a
client using the common mcpServers configuration shape:
{
"mcpServers": {
"load-planner": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["-m", "solver_mcp"],
"env": { "PYTHONPATH": "/absolute/path/to/load-planner-mcp" }
}
}
}PYTHONPATH is only needed when the package has not been installed into the
interpreter's environment; after pip install -e . the env block can go.
The handshake is the standard one: initialize, then the
notifications/initialized notification, then tools/list. The server reports
protocol version 2025-06-18 and accepts 2025-03-26 and 2024-11-05,
echoing back whichever the client asked for if it is one of those.
Tests
python -m pytest tests/ -qThree suites: the solver's own tests against the fixture; the MCP handshake and both tools, exercised in process and over a real stdio subprocess; and the tamper suite, which asserts that a narration containing a value absent from the stored result is rejected.
Limits
Single machine, single process. The result store is in memory and lives for the life of the server process. A
result_idfrom one process resolves in another only because ids are content-addressed and the solver is deterministic — re-solving the same problem reproduces the id. There is no shared store, no eviction, and no bound on the number of retained results.Solver runtimes. CP-SAT is called once per enumerated mode-pattern, at most three times per
solve, on a model with one integer variable and two constraints; it returns in milliseconds. The cost that scales is the 3D packer, which places one item per pallet — a few hundred pallets is fine, tens of thousands is not.solveruns synchronously and has no internal timeout, so a host should impose its own.Whole-order assignment only. Splitting one order across two modes (a base-plus-surge policy) is not modelled; each order is assigned entirely to one mode.
Seeded risk inputs. The delay distributions in
risk.pyare published carrier-reliability seeds, not measurements from your own lane history. They are the right shape and the wrong precision until a caller replaces them.The guard is lexical. See the note above:
verify_narrationchecks that every number in a narration appears in the result. It does not check that the number was used to mean the right thing.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityCmaintenanceLets AI agents pack shipping containers using the Kubova calculator, with tools for container loading and API key verification.420MIT- AlicenseAqualityCmaintenanceOcean and multimodal freight intelligence suite providing cross-validated rates, total landed cost, transit reliability, customs, risk, emissions, and unified ship decisions through 47 tools.4710MIT
- AlicenseNot gradedqualityCmaintenancePlan optimal container & truck loads: 3D layouts, right-size the container mix, and check utilization, centre of gravity, crush protection and securing across 200+ equipment types.17MIT
- AlicenseAqualityCmaintenanceEnables AI agents to pack trucks and shipping containers by generating validated 3D load plans with metrics like LDM, linear feet, and pallet positions through the Hansatic packing API.313MIT
Related MCP Connectors
Plain-English shipment input for freight & logistics: containers your cargo fits, 3D load plan.
Ocean & multimodal freight intelligence: rates, landed cost, transit, customs, risk, ship decisions
Neutral freight reference + validation layer for AI agents: ADR, HS, UN/LOCODE, freight math
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bayraak/load-planner-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server