ecommerce
ShipBob MCP Integration for OpenAI Agents SDK
Connect ShipBob to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect ShipBob to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
ShipBob MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-shipbob": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=shipbob",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=shipbob --write=deny Why Use KosmoKrator Here
Expose only ShipBob instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
ShipBob Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the ShipBob integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__shipbob__shipbob_list_orders | shipbob.shipbob_list_orders | Read | List fulfillment orders from ShipBob. Supports pagination and filtering by status (e.g. pending, fulfilled, cancelled). |
integration__shipbob__shipbob_get_order | shipbob.shipbob_get_order | Read | Get details for a specific ShipBob order by ID, including line items, shipping address, and fulfillment status. |
integration__shipbob__shipbob_create_order | shipbob.shipbob_create_order | Write | Create a new fulfillment order in ShipBob. Provide product line items, a receiving note, and an optional shipping method. |
integration__shipbob__shipbob_list_products | shipbob.shipbob_list_products | Read | List products in your ShipBob inventory. Supports pagination with page and limit parameters. |
integration__shipbob__shipbob_get_product | shipbob.shipbob_get_product | Read | Get details for a specific ShipBob product by ID, including SKU, inventory levels, and fulfillment info. |
integration__shipbob__shipbob_list_shipments | shipbob.shipbob_list_shipments | Read | List shipments from ShipBob. Supports pagination with page and limit parameters. |
integration__shipbob__shipbob_get_current_user | shipbob.shipbob_get_current_user | Read | Get the currently authenticated ShipBob user profile. Useful for verifying connectivity and account details. |