MCP Tool
create_bundleScope: bundles:manageCreate 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| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| title | string | Required | — | Title of the new custom bundle pack. |
| assetIds | string[] | Required | — | Array of at least 2 catalog asset IDs to bundle together. |
| discountPercent | number | Required | — | Package 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"
}