Docs/MCP Tools/create_bundle
MCP Toolcreate_bundleScope: bundles:manage

Create Bundle

Package several catalog assets together into a custom discounted SKU for resale or distribution.

Description

Create Bundle allows verified creators, developer partners, and agency accounts to compose customized multi-item packs from their published assets. The tool configures a package title, included asset IDs, and a discount percentage between 10% and 90%.

AI Agent Guidance & Best Practices

Requires bundles:manage permission scope. Verify that all asset IDs exist in the catalog and are owned by the creator before bundling.

Input Arguments

3 parameters
ParameterTypeRequiredDefaultDescription
titlestringRequiredTitle of the new custom bundle pack.
assetIdsstring[]RequiredArray of at least 2 catalog asset IDs to bundle together.
discountPercentnumberRequiredPackage discount percentage (10 to 90).

Request Example

{
  "jsonrpc": "2.0",
  "id": "call_20",
  "method": "tools/call",
  "params": {
    "name": "create_bundle",
    "arguments": {
      "title": "Sci-Fi Starter Kit",
      "assetIds": [
        "ast_neon_matrix",
        "ast_cyber_car"
      ],
      "discountPercent": 30
    }
  }
}

Response Schema Example

application/json
{
  "success": true,
  "bundleId": "bdl_scifi_starter_kit",
  "priceINR": 1048,
  "status": "active"
}