ShipHero MCP Server

list_shipments

Retrieve and filter shipment data by creation date, order ID, or status. Manage pagination with limit and page options to efficiently access shipment details.

Input Schema

NameRequiredDescriptionDefault
created_afterNoFilter by creation date (YYYY-MM-DD)
limitNoNumber of results per page
order_idNoFilter by order ID
pageNoPage number for pagination
statusNoFilter by shipment status

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "created_after": { "description": "Filter by creation date (YYYY-MM-DD)", "type": "string" }, "limit": { "description": "Number of results per page", "type": "number" }, "order_id": { "description": "Filter by order ID", "type": "string" }, "page": { "description": "Page number for pagination", "type": "number" }, "status": { "description": "Filter by shipment status", "type": "string" } }, "type": "object" }
ID: 86hw9j6m2j