Developer portal
Freight intelligence your software can call directly.
One reference in; status, route, milestones, schedules, rates and load plans out. Every product speaks REST, and most speak MCP as well, behind a single bearer key.
Your first call
Track a container in one request.
The public lookup needs no account. Paste a container number, a bill of lading or a booking, and read back a normalised status and a truthful ETA.
See the endpointcurl -X POST https://api.trackingmcp.com/v1/track/public \
-H "Content-Type: application/json" \
-d '{"reference":"MEDU1234562"}'const res = await fetch("https://api.trackingmcp.com/v1/track/public", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"reference": "MEDU1234562"
})
});
const data = await res.json();import requests
res = requests.post(
"https://api.trackingmcp.com/v1/track/public",
json={
"reference": "MEDU1234562"
},
)
data = res.json() The APIs
23 endpoints · 24 MCP toolsWhere every container is, and when it will really arrive.
Any air waybill, from acceptance to delivery, on one timeline.
Compare sailings the way a freight desk actually books them.
Plan the stuff inside the box, to the standard, not by eye.
What a lane costs this week, before you brief a forwarder.
REST
Plain HTTP, JSON out
Bearer-key auth, predictable envelopes and DCSA-normalised events. Copy-paste samples in curl, JavaScript and Python on every endpoint.
Browse the referenceMCP
Freight state as tool calls
Point Claude, Cursor or any MCP client at a server and let the model call tracking, schedules and load planning directly. Same key, same data.
MCP quickstart