get_shipment
Retrieve detailed shipment information by providing the shipment ID using the ShipStation API MCP Server. Simplify tracking and management of orders and logistics.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shipmentId | Yes | Shipment ID to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"shipmentId": {
"description": "Shipment ID to retrieve",
"type": "number"
}
},
"required": [
"shipmentId"
],
"type": "object"
}