ContainerMath MCP server

This host is a Model Context Protocol endpoint, not a web page. It speaks JSON-RPC over HTTP POST, which is why your browser landed on this note instead of an app.

Endpoint

https://mcp.containermath.com

Add it as a custom connector in Claude or ChatGPT, or point any MCP client at it. It is also listed in the official MCP registry as com.containermath/cbm.

What it does

One tool, calculate_cbm: it takes item dimensions, weights and quantities and returns total volume plus which shipping containers the load fits. The math is volume only — it does not plan the stow.

Try it without a client

curl -s https://mcp.containermath.com \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Docs