ecommerce
ShipBob MCP Gateway for AI Agents
Expose ShipBob tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
7 functions 6 read 1 write Bearer token auth
ShipBob MCP Gateway
Expose ShipBob to MCP clients with `kosmokrator mcp:serve --integration=shipbob`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=shipbob --write=deny --json {
"mcpServers": {
"kosmokrator-shipbob": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=shipbob",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=shipbob --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__shipbob__shipbob_list_orders | shipbob.shipbob_list_orders | Read read |
integration__shipbob__shipbob_get_order | shipbob.shipbob_get_order | Read read |
integration__shipbob__shipbob_create_order | shipbob.shipbob_create_order | Write write |
integration__shipbob__shipbob_list_products | shipbob.shipbob_list_products | Read read |
integration__shipbob__shipbob_get_product | shipbob.shipbob_get_product | Read read |
integration__shipbob__shipbob_list_shipments | shipbob.shipbob_list_shipments | Read read |
integration__shipbob__shipbob_get_current_user | shipbob.shipbob_get_current_user | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.