Docs/MCP Tools/get_bundle
MCP Toolget_bundleScope: catalog:read

Get Bundle Details

Retrieve detailed bundle metadata, pricing, required tier, and constituent product assets.

Description

Fetches full metadata for a published Krafto bundle, including constituent asset summaries, preview graphics, pricing, and category breakdowns.

AI Agent Guidance & Best Practices

Public read tool. Returns real bundle specifications, price, and member asset identifiers.

Input Arguments

1 parameters
ParameterTypeRequiredDefaultDescription
bundleIdstringRequired—UUID of the bundle to inspect.

Request Example

{
  "jsonrpc": "2.0",
  "id": "call_21",
  "method": "tools/call",
  "params": {
    "name": "get_bundle",
    "arguments": {
      "bundleId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
    }
  }
}

Response Schema Example

application/json
{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "name": "Ultimate Creator Bundle",
  "price": 49,
  "currency": "USD",
  "assetCount": 120,
  "assets": [
    {
      "id": "ast_01",
      "title": "Cyberpunk Font",
      "categorySlug": "fonts",
      "basePrice": 19
    }
  ]
}