terminal49_container
Pack: terminal49 · Endpoint: https://gateway.pipeworx.io/terminal49/mcp
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” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Container id (UUID). |
include_events | boolean | no | If true, include transport_events (normalized vessel/rail milestones) in the response. |
_apiKey | string | yes | Terminal49 API key (create one at https://app.terminal49.com/developers/api-keys). |
Example call
Arguments
{
"id": "8a1f6e2c-3d9b-4a7c-5f1e-2b4d6a8c9e3f",
"include_events": true,
"_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_container","arguments":{"id":"8a1f6e2c-3d9b-4a7c-5f1e-2b4d6a8c9e3f","include_events":true,"_apiKey":"your-terminal49-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('terminal49_container', {
"id": "8a1f6e2c-3d9b-4a7c-5f1e-2b4d6a8c9e3f",
"include_events": true,
"_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.