data
ShipBob MCP, CLI, and Lua Integration for AI Agents
ShipBob integration docs for AI agents: MCP gateway setup, ShipBob CLI commands, Lua API reference, credentials, and function schemas.ShipBob for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
shipbob.shipbob_list_orders | Read read | 3 | List fulfillment orders from ShipBob. Supports pagination and filtering by status (e.g. pending, fulfilled, cancelled). |
shipbob.shipbob_get_order | Read read | 1 | Get details for a specific ShipBob order by ID, including line items, shipping address, and fulfillment status. |
shipbob.shipbob_create_order | Write write | 3 | Create a new fulfillment order in ShipBob. Provide product line items, a receiving note, and an optional shipping method. |
shipbob.shipbob_list_products | Read read | 2 | List products in your ShipBob inventory. Supports pagination with page and limit parameters. |
shipbob.shipbob_get_product | Read read | 1 | Get details for a specific ShipBob product by ID, including SKU, inventory levels, and fulfillment info. |
shipbob.shipbob_list_shipments | Read read | 2 | List shipments from ShipBob. Supports pagination with page and limit parameters. |
shipbob.shipbob_get_current_user | Read read | 0 | Get the currently authenticated ShipBob user profile. Useful for verifying connectivity and account details. |