terminal49_shipment

Pack: terminal49 · Endpoint: https://gateway.pipeworx.io/terminal49/mcp

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” })

Parameters

NameTypeRequiredDescription
idstringnoShipment id (UUID). Omit to list recent shipments instead.
pagenumbernoPage number when listing shipments (optional, defaults to 1).
_apiKeystringyesTerminal49 API key (create one at https://app.terminal49.com/developers/api-keys).

Example call

Arguments

{
  "id": "3c9d7a2b-1e4f-4c8d-9b5a-6f2e3c1d0a9b",
  "_apiKey": "your-terminal49-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/terminal49/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"terminal49_shipment","arguments":{"id":"3c9d7a2b-1e4f-4c8d-9b5a-6f2e3c1d0a9b","_apiKey":"your-terminal49-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('terminal49_shipment', {
  "id": "3c9d7a2b-1e4f-4c8d-9b5a-6f2e3c1d0a9b",
  "_apiKey": "your-terminal49-api-key"
});

More examples

{
  "page": 2,
  "_apiKey": "your-terminal49-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "terminal49": {
      "url": "https://gateway.pipeworx.io/terminal49/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 24, 2026