ShipStation API MCP Server

mark_order_as_shipped

Update an order's status to shipped in ShipStation by providing the order ID, carrier code, ship date, and tracking number for accurate shipment tracking.

Input Schema

NameRequiredDescriptionDefault
carrierCodeYesCarrier code
orderIdYesOrder ID to mark as shipped
shipDateYesShip date (YYYY-MM-DD)
trackingNumberYesTracking number

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "carrierCode": { "description": "Carrier code", "type": "string" }, "orderId": { "description": "Order ID to mark as shipped", "type": "number" }, "shipDate": { "description": "Ship date (YYYY-MM-DD)", "type": "string" }, "trackingNumber": { "description": "Tracking number", "type": "string" } }, "required": [ "orderId", "carrierCode", "shipDate", "trackingNumber" ], "type": "object" }
ID: gf5s1mfe76