ShipBob API MCP Server

create_product

Add products to ShipBob's inventory by defining details like name, SKU, dimensions, weight, and value. Essential for e-commerce fulfillment management.

Input Schema

NameRequiredDescriptionDefault
barcodeNoProduct barcode/UPC
descriptionNoProduct description
heightNoHeight in inches
lengthNoLength in inches
nameYesProduct name
skuYesStock keeping unit (unique identifier)
valueNoDeclared value of the product
weightNoWeight in ounces
widthNoWidth in inches

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "barcode": { "description": "Product barcode/UPC", "type": "string" }, "description": { "description": "Product description", "type": "string" }, "height": { "description": "Height in inches", "type": "number" }, "length": { "description": "Length in inches", "type": "number" }, "name": { "description": "Product name", "type": "string" }, "sku": { "description": "Stock keeping unit (unique identifier)", "type": "string" }, "value": { "description": "Declared value of the product", "type": "number" }, "weight": { "description": "Weight in ounces", "type": "number" }, "width": { "description": "Width in inches", "type": "number" } }, "required": [ "name", "sku" ], "type": "object" }
ID: 37nc7wfin6