Skip to content
TrackJet

7-day Pro trial included with every new account — no card, no charge.

Start free with 500 saved shipments. Every new account also gets a 7-day Pro trial — no card required.

Start 7-day Pro trial

MCP server for AI agents

Connect an agent over JSON-RPC 2.0 and call TrackJet detection, routing, carbon and verification as tools — read-only, no PII.

What it is

TrackJet ships a Model Context Protocol (MCP) server so an AI agent can query tracking the same way it queries any other tool — structured calls, structured results, no HTML scraping. It speaks JSON-RPC 2.0 over streamable HTTP at:

`` POST /mcp # protocol version 2025-11-25 ``

Everything exposed here is read-only and carries no PII — agents read detection, routing, catalogue and verification data; they cannot mutate anything or reach a user's account.

Discover the tools

Never hard-code the tool list — ask for it:

``bash curl -s https://trackjet.world/mcp \ -H 'Content-Type: application/json' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' ``

tools/list returns each tool's name, description and JSON input schema; tools/call invokes one. The set today:

  • Detection & routingdetect_tracking_number, get_carrier_info, get_tracking_url, list_supported_carriers
  • History & verificationget_shipment_events, verify_timeline
  • Estimationestimate_carbon, get_distance, get_transit_stats, forecast_delivery
  • Self-description & truthget_trackjet_capabilities, assess_shipment_truth

Calibrate before you describe

get_trackjet_capabilities returns a live snapshot — supported formats, active carrier counts, wired feeds, and an honest does_not list — so an agent describes what TrackJet actually does today instead of guessing from marketing copy. Estimation tools answer only when the data is mature (e.g. a route with enough real observations) and say so otherwise; they never fabricate an ETA or a distance.

Reference

The browsable tool catalogue with current schemas lives at [/developers](/developers); this page explains the model, [/developers](/developers) holds the reference. For the wider machine surface (REST, EPCIS, SSE) see [the developer surface](/docs/developer-surface).