MCP server exposing 3 tools for terminal49.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/terminal49/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
terminal49_track — Start tracking an ocean shipment or container by submitting a bill of lading, booking, or container number plus the carrier SCAC. Returns the tracking request id and status (pending -> created/failed). Example: terminal49_track({ request_number: "MEDUFR030802", request_type: "bill_of_lading", scac: "MSCU", _apiKey: "your-key" })terminal49_shipment — Get an ocean shipment and its containers: bill of lading, carrier, port of lading (POL), port of discharge (POD), vessel, and ETA. Pass an `id` for a single shipment, or omit it to list recent shipments. Example: terminal49_shipment({ id: "3c9d...", _apiKey: "your-key" })terminal49_container — Get a container by id: current status, terminal holds, demurrage last free day (LFD / pickup_lfd), availability for pickup, and key milestone timestamps. Set include_events=true to also fetch normalized transport events (vessel/rail moves). Example: terminal49_container({ id: "8a1f...", include_events: true, _apiKey: "your-key" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/terminal49/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io