KosmoKrator

productivity

BigCommerce MCP Gateway for AI Agents

Expose BigCommerce tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

BigCommerce MCP Gateway

Expose BigCommerce to MCP clients with `kosmokrator mcp:serve --integration=bigcommerce`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server.

Install KosmoKrator
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
Install gateway entry
kosmokrator mcp:gateway:install --integration=bigcommerce --write=deny --json
MCP configuration
{
  "mcpServers": {
    "kosmokrator-bigcommerce": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=bigcommerce",
        "--write=deny"
      ]
    }
  }
}
Serve manually
kosmokrator mcp:serve --integration=bigcommerce --write=deny

Client Notes

Use one scoped MCP gateway entry, then adapt the config location to the client or framework.

Claude Code Connect local KosmoKrator integrations to Claude Code through one scoped MCP gateway entry. Claude Code can launch the local kosmo binary directly from the project MCP config.
Cursor Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server. Use the same KosmoKrator install and integration credentials that power terminal and headless runs.
Codex Use KosmoKrator as a local MCP proxy for Codex so coding sessions can reach selected integrations with explicit write policy. Keep write access denied or ask-based unless the workspace is trusted.
OpenAI Agents SDK Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway. Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
Claude Agent SDK Give Claude Agent SDK workflows access to KosmoKrator integrations through a local MCP server. Use a narrow integration list so the agent does not load unrelated tools.
Vercel AI SDK Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts. Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
LangChain Bridge LangChain agents to local KosmoKrator integration tools through MCP or headless CLI calls. Keep the gateway scoped to the integration and operation class needed by the chain.
LangGraph Run KosmoKrator integration calls from LangGraph nodes while preserving local credentials and permissions. Headless CLI calls fit repeatable graph edges; MCP fits exploratory agent nodes.
CrewAI Expose KosmoKrator integrations to CrewAI workers as scoped local tools. Use per-worker integration scopes to avoid giving every worker every tool.
Generic MCP Clients Connect any stdio-compatible MCP client to local KosmoKrator integration tools. Start with read-only write policy and expand only for trusted projects.

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names.

MCP toolSource functionType
integration__bigcommerce__bigcommerce_list_products bigcommerce.bigcommerce_list_products Read read
integration__bigcommerce__bigcommerce_get_product bigcommerce.bigcommerce_get_product Read read
integration__bigcommerce__bigcommerce_create_product bigcommerce.bigcommerce_create_product Write write
integration__bigcommerce__bigcommerce_update_product bigcommerce.bigcommerce_update_product Write write
integration__bigcommerce__bigcommerce_delete_product bigcommerce.bigcommerce_delete_product Write write
integration__bigcommerce__bigcommerce_list_product_variants bigcommerce.bigcommerce_list_product_variants Read read
integration__bigcommerce__bigcommerce_get_product_variant bigcommerce.bigcommerce_get_product_variant Read read
integration__bigcommerce__bigcommerce_create_product_variant bigcommerce.bigcommerce_create_product_variant Write write
integration__bigcommerce__bigcommerce_update_product_variant bigcommerce.bigcommerce_update_product_variant Write write
integration__bigcommerce__bigcommerce_delete_product_variant bigcommerce.bigcommerce_delete_product_variant Write write
integration__bigcommerce__bigcommerce_list_product_images bigcommerce.bigcommerce_list_product_images Read read
integration__bigcommerce__bigcommerce_get_product_image bigcommerce.bigcommerce_get_product_image Read read
integration__bigcommerce__bigcommerce_create_product_image bigcommerce.bigcommerce_create_product_image Write write
integration__bigcommerce__bigcommerce_update_product_image bigcommerce.bigcommerce_update_product_image Write write
integration__bigcommerce__bigcommerce_delete_product_image bigcommerce.bigcommerce_delete_product_image Write write
integration__bigcommerce__bigcommerce_list_product_custom_fields bigcommerce.bigcommerce_list_product_custom_fields Read read
integration__bigcommerce__bigcommerce_get_product_custom_field bigcommerce.bigcommerce_get_product_custom_field Read read
integration__bigcommerce__bigcommerce_create_product_custom_field bigcommerce.bigcommerce_create_product_custom_field Write write
integration__bigcommerce__bigcommerce_update_product_custom_field bigcommerce.bigcommerce_update_product_custom_field Write write
integration__bigcommerce__bigcommerce_delete_product_custom_field bigcommerce.bigcommerce_delete_product_custom_field Write write
integration__bigcommerce__bigcommerce_list_product_modifiers bigcommerce.bigcommerce_list_product_modifiers Read read
integration__bigcommerce__bigcommerce_get_product_modifier bigcommerce.bigcommerce_get_product_modifier Read read
integration__bigcommerce__bigcommerce_create_product_modifier bigcommerce.bigcommerce_create_product_modifier Write write
integration__bigcommerce__bigcommerce_update_product_modifier bigcommerce.bigcommerce_update_product_modifier Write write
integration__bigcommerce__bigcommerce_delete_product_modifier bigcommerce.bigcommerce_delete_product_modifier Write write
integration__bigcommerce__bigcommerce_list_product_options bigcommerce.bigcommerce_list_product_options Read read
integration__bigcommerce__bigcommerce_get_product_option bigcommerce.bigcommerce_get_product_option Read read
integration__bigcommerce__bigcommerce_create_product_option bigcommerce.bigcommerce_create_product_option Write write
integration__bigcommerce__bigcommerce_update_product_option bigcommerce.bigcommerce_update_product_option Write write
integration__bigcommerce__bigcommerce_delete_product_option bigcommerce.bigcommerce_delete_product_option Write write
integration__bigcommerce__bigcommerce_list_product_videos bigcommerce.bigcommerce_list_product_videos Read read
integration__bigcommerce__bigcommerce_get_product_video bigcommerce.bigcommerce_get_product_video Read read
integration__bigcommerce__bigcommerce_create_product_video bigcommerce.bigcommerce_create_product_video Write write
integration__bigcommerce__bigcommerce_update_product_video bigcommerce.bigcommerce_update_product_video Write write
integration__bigcommerce__bigcommerce_delete_product_video bigcommerce.bigcommerce_delete_product_video Write write
integration__bigcommerce__bigcommerce_list_categories bigcommerce.bigcommerce_list_categories Read read
integration__bigcommerce__bigcommerce_get_category bigcommerce.bigcommerce_get_category Read read
integration__bigcommerce__bigcommerce_create_category bigcommerce.bigcommerce_create_category Write write
integration__bigcommerce__bigcommerce_update_category bigcommerce.bigcommerce_update_category Write write
integration__bigcommerce__bigcommerce_delete_category bigcommerce.bigcommerce_delete_category Write write
integration__bigcommerce__bigcommerce_list_brands bigcommerce.bigcommerce_list_brands Read read
integration__bigcommerce__bigcommerce_get_brand bigcommerce.bigcommerce_get_brand Read read
integration__bigcommerce__bigcommerce_create_brand bigcommerce.bigcommerce_create_brand Write write
integration__bigcommerce__bigcommerce_update_brand bigcommerce.bigcommerce_update_brand Write write
integration__bigcommerce__bigcommerce_delete_brand bigcommerce.bigcommerce_delete_brand Write write
integration__bigcommerce__bigcommerce_list_category_trees bigcommerce.bigcommerce_list_category_trees Read read
integration__bigcommerce__bigcommerce_get_category_tree bigcommerce.bigcommerce_get_category_tree Read read
integration__bigcommerce__bigcommerce_create_category_tree bigcommerce.bigcommerce_create_category_tree Write write
integration__bigcommerce__bigcommerce_update_category_tree bigcommerce.bigcommerce_update_category_tree Write write
integration__bigcommerce__bigcommerce_delete_category_tree bigcommerce.bigcommerce_delete_category_tree Write write
integration__bigcommerce__bigcommerce_list_price_lists bigcommerce.bigcommerce_list_price_lists Read read
integration__bigcommerce__bigcommerce_get_price_list bigcommerce.bigcommerce_get_price_list Read read
integration__bigcommerce__bigcommerce_create_price_list bigcommerce.bigcommerce_create_price_list Write write
integration__bigcommerce__bigcommerce_update_price_list bigcommerce.bigcommerce_update_price_list Write write
integration__bigcommerce__bigcommerce_delete_price_list bigcommerce.bigcommerce_delete_price_list Write write
integration__bigcommerce__bigcommerce_list_price_list_records bigcommerce.bigcommerce_list_price_list_records Read read
integration__bigcommerce__bigcommerce_set_price_list_records bigcommerce.bigcommerce_set_price_list_records Write write
integration__bigcommerce__bigcommerce_delete_price_list_records bigcommerce.bigcommerce_delete_price_list_records Write write
integration__bigcommerce__bigcommerce_list_orders bigcommerce.bigcommerce_list_orders Read read
integration__bigcommerce__bigcommerce_get_order bigcommerce.bigcommerce_get_order Read read
integration__bigcommerce__bigcommerce_create_order bigcommerce.bigcommerce_create_order Write write
integration__bigcommerce__bigcommerce_update_order bigcommerce.bigcommerce_update_order Write write
integration__bigcommerce__bigcommerce_delete_order bigcommerce.bigcommerce_delete_order Write write
integration__bigcommerce__bigcommerce_list_order_products bigcommerce.bigcommerce_list_order_products Read read
integration__bigcommerce__bigcommerce_list_shipping_addresses bigcommerce.bigcommerce_list_shipping_addresses Read read
integration__bigcommerce__bigcommerce_list_coupons bigcommerce.bigcommerce_list_coupons Read read
integration__bigcommerce__bigcommerce_list_transactions bigcommerce.bigcommerce_list_transactions Read read
integration__bigcommerce__bigcommerce_list_order_shipments bigcommerce.bigcommerce_list_order_shipments Read read
integration__bigcommerce__bigcommerce_get_order_shipment bigcommerce.bigcommerce_get_order_shipment Read read
integration__bigcommerce__bigcommerce_create_order_shipment bigcommerce.bigcommerce_create_order_shipment Write write
integration__bigcommerce__bigcommerce_update_order_shipment bigcommerce.bigcommerce_update_order_shipment Write write
integration__bigcommerce__bigcommerce_delete_order_shipment bigcommerce.bigcommerce_delete_order_shipment Write write
integration__bigcommerce__bigcommerce_list_customers bigcommerce.bigcommerce_list_customers Read read
integration__bigcommerce__bigcommerce_get_customer bigcommerce.bigcommerce_get_customer Read read
integration__bigcommerce__bigcommerce_create_customers bigcommerce.bigcommerce_create_customers Write write
integration__bigcommerce__bigcommerce_update_customers bigcommerce.bigcommerce_update_customers Write write
integration__bigcommerce__bigcommerce_delete_customers bigcommerce.bigcommerce_delete_customers Write write
integration__bigcommerce__bigcommerce_list_customer_addresses bigcommerce.bigcommerce_list_customer_addresses Read read
integration__bigcommerce__bigcommerce_get_customer_address bigcommerce.bigcommerce_get_customer_address Read read
integration__bigcommerce__bigcommerce_create_customer_addresses bigcommerce.bigcommerce_create_customer_addresses Write write
integration__bigcommerce__bigcommerce_update_customer_addresses bigcommerce.bigcommerce_update_customer_addresses Write write
integration__bigcommerce__bigcommerce_delete_customer_addresses bigcommerce.bigcommerce_delete_customer_addresses Write write
integration__bigcommerce__bigcommerce_list_customer_form_field_values bigcommerce.bigcommerce_list_customer_form_field_values Read read
integration__bigcommerce__bigcommerce_get_customer_form_field_value bigcommerce.bigcommerce_get_customer_form_field_value Read read
integration__bigcommerce__bigcommerce_create_customer_form_field_values bigcommerce.bigcommerce_create_customer_form_field_values Write write
integration__bigcommerce__bigcommerce_update_customer_form_field_values bigcommerce.bigcommerce_update_customer_form_field_values Write write
integration__bigcommerce__bigcommerce_delete_customer_form_field_values bigcommerce.bigcommerce_delete_customer_form_field_values Write write
integration__bigcommerce__bigcommerce_list_customer_groups bigcommerce.bigcommerce_list_customer_groups Read read
integration__bigcommerce__bigcommerce_get_customer_group bigcommerce.bigcommerce_get_customer_group Read read
integration__bigcommerce__bigcommerce_create_customer_group bigcommerce.bigcommerce_create_customer_group Write write
integration__bigcommerce__bigcommerce_update_customer_group bigcommerce.bigcommerce_update_customer_group Write write
integration__bigcommerce__bigcommerce_delete_customer_group bigcommerce.bigcommerce_delete_customer_group Write write
integration__bigcommerce__bigcommerce_list_carts bigcommerce.bigcommerce_list_carts Read read
integration__bigcommerce__bigcommerce_get_cart bigcommerce.bigcommerce_get_cart Read read
integration__bigcommerce__bigcommerce_create_cart bigcommerce.bigcommerce_create_cart Write write
integration__bigcommerce__bigcommerce_delete_cart bigcommerce.bigcommerce_delete_cart Write write
integration__bigcommerce__bigcommerce_get_checkout bigcommerce.bigcommerce_get_checkout Read read
integration__bigcommerce__bigcommerce_update_checkout bigcommerce.bigcommerce_update_checkout Write write
integration__bigcommerce__bigcommerce_update_checkout_billing_address bigcommerce.bigcommerce_update_checkout_billing_address Write write
integration__bigcommerce__bigcommerce_create_checkout_consignments bigcommerce.bigcommerce_create_checkout_consignments Write write
integration__bigcommerce__bigcommerce_update_checkout_consignment bigcommerce.bigcommerce_update_checkout_consignment Write write
integration__bigcommerce__bigcommerce_delete_checkout_consignment bigcommerce.bigcommerce_delete_checkout_consignment Write write
integration__bigcommerce__bigcommerce_get_store bigcommerce.bigcommerce_get_store Read read
integration__bigcommerce__bigcommerce_get_storefront_status bigcommerce.bigcommerce_get_storefront_status Read read
integration__bigcommerce__bigcommerce_get_current_user bigcommerce.bigcommerce_get_current_user Read read
integration__bigcommerce__bigcommerce_list_channels bigcommerce.bigcommerce_list_channels Read read
integration__bigcommerce__bigcommerce_get_channel bigcommerce.bigcommerce_get_channel Read read
integration__bigcommerce__bigcommerce_create_channel bigcommerce.bigcommerce_create_channel Write write
integration__bigcommerce__bigcommerce_update_channel bigcommerce.bigcommerce_update_channel Write write
integration__bigcommerce__bigcommerce_delete_channel bigcommerce.bigcommerce_delete_channel Write write
integration__bigcommerce__bigcommerce_list_sites bigcommerce.bigcommerce_list_sites Read read
integration__bigcommerce__bigcommerce_get_site bigcommerce.bigcommerce_get_site Read read
integration__bigcommerce__bigcommerce_create_site bigcommerce.bigcommerce_create_site Write write
integration__bigcommerce__bigcommerce_update_site bigcommerce.bigcommerce_update_site Write write
integration__bigcommerce__bigcommerce_delete_site bigcommerce.bigcommerce_delete_site Write write
integration__bigcommerce__bigcommerce_list_webhooks bigcommerce.bigcommerce_list_webhooks Read read
integration__bigcommerce__bigcommerce_get_webhook bigcommerce.bigcommerce_get_webhook Read read
integration__bigcommerce__bigcommerce_create_webhook bigcommerce.bigcommerce_create_webhook Write write
integration__bigcommerce__bigcommerce_update_webhook bigcommerce.bigcommerce_update_webhook Write write
integration__bigcommerce__bigcommerce_delete_webhook bigcommerce.bigcommerce_delete_webhook Write write
integration__bigcommerce__bigcommerce_list_content_pages bigcommerce.bigcommerce_list_content_pages Read read
integration__bigcommerce__bigcommerce_get_content_page bigcommerce.bigcommerce_get_content_page Read read
integration__bigcommerce__bigcommerce_create_content_page bigcommerce.bigcommerce_create_content_page Write write
integration__bigcommerce__bigcommerce_update_content_page bigcommerce.bigcommerce_update_content_page Write write
integration__bigcommerce__bigcommerce_delete_content_page bigcommerce.bigcommerce_delete_content_page Write write
integration__bigcommerce__bigcommerce_list_widgets bigcommerce.bigcommerce_list_widgets Read read
integration__bigcommerce__bigcommerce_get_widget bigcommerce.bigcommerce_get_widget Read read
integration__bigcommerce__bigcommerce_create_widget bigcommerce.bigcommerce_create_widget Write write
integration__bigcommerce__bigcommerce_update_widget bigcommerce.bigcommerce_update_widget Write write
integration__bigcommerce__bigcommerce_delete_widget bigcommerce.bigcommerce_delete_widget Write write
integration__bigcommerce__bigcommerce_list_widget_templates bigcommerce.bigcommerce_list_widget_templates Read read
integration__bigcommerce__bigcommerce_get_widget_template bigcommerce.bigcommerce_get_widget_template Read read
integration__bigcommerce__bigcommerce_create_widget_template bigcommerce.bigcommerce_create_widget_template Write write
integration__bigcommerce__bigcommerce_update_widget_template bigcommerce.bigcommerce_update_widget_template Write write
integration__bigcommerce__bigcommerce_delete_widget_template bigcommerce.bigcommerce_delete_widget_template Write write
integration__bigcommerce__bigcommerce_list_redirects bigcommerce.bigcommerce_list_redirects Read read
integration__bigcommerce__bigcommerce_get_redirect bigcommerce.bigcommerce_get_redirect Read read
integration__bigcommerce__bigcommerce_create_redirect bigcommerce.bigcommerce_create_redirect Write write
integration__bigcommerce__bigcommerce_update_redirect bigcommerce.bigcommerce_update_redirect Write write
integration__bigcommerce__bigcommerce_delete_redirect bigcommerce.bigcommerce_delete_redirect Write write
integration__bigcommerce__bigcommerce_list_regions bigcommerce.bigcommerce_list_regions 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.