ShipBob API MCP Server

create_shipment

Initiate shipment creation for e-commerce orders by specifying order ID, shipping method, and items to ship. Integrates with ShipBob API to streamline fulfillment processes.

Input Schema

NameRequiredDescriptionDefault
fulfillmentCenterIdNoPreferred fulfillment center ID
itemsYesItems to ship
orderIdYesThe ID of the order to create a shipment for
shippingMethodYesShipping method to use

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "fulfillmentCenterId": { "description": "Preferred fulfillment center ID", "type": "string" }, "items": { "description": "Items to ship", "items": { "additionalProperties": false, "properties": { "orderItemId": { "description": "Order item ID to ship", "type": "string" }, "quantity": { "description": "Quantity to ship", "type": "number" } }, "required": [ "orderItemId", "quantity" ], "type": "object" }, "type": "array" }, "orderId": { "description": "The ID of the order to create a shipment for", "type": "string" }, "shippingMethod": { "description": "Shipping method to use", "type": "string" } }, "required": [ "orderId", "shippingMethod", "items" ], "type": "object" }
ID: 37nc7wfin6