Skip to main content

bundles


title: Bundles sidebar_label: Bundles (4) sidebar_position: 11 doc_type: reference

Bundles

Overview

Browse and import pre-built configuration packs.

Prerequisites

  • API key with the MCP preset and required scopes
  • Configured MCP client (see Configuration)

Quick start examples

Browse and import a bundle

  1. Browse available bundles :
{
"name": "bundle_list",
"arguments": {}
}
  1. Preview the import :
{
"name": "bundle_preview",
"arguments": {
"bundleId": "uuid-du-bundle"
}
}
  1. Import the bundle :
{
"name": "bundle_import",
"arguments": {
"bundleId": "uuid-du-bundle"
}
}

bundle_get

Get detailed information about a specific bundle including all modules.

USE WHEN:

  • Need to inspect a bundle\
Scopemcp.read
Read-onlyYes
DestructiveNo
IdempotentYes

Parameters

ParameterTypeRequiredDescription
bundleIdstringYesBundle identifier (slug from catalog)

Related tools : bundle_list, bundle_preview


bundle_import

Import a use-case bundle into the current workspace.

USE WHEN:

  • Want to set up a complete use-case (ontology + workflows + agents)
  • Need to bootstrap a workspace with pre-built templates RETURNS: import ID, status, created resources, and any errors. NOTE: Use bundle_preview first to check for conflicts.
Scopemcp.write
Read-onlyNo
DestructiveNo
IdempotentNo

Parameters

ParameterTypeRequiredDescription
bundleIdstringYesBundle identifier (slug from catalog)
conflictResolutionchoice (skip, update, fail)NoHow to handle conflicts (default: update)
dryRunbooleanNoIf true, validate without actually importing (default: false)
espaceIdstring (uuid)NoTarget espace (canvas) ID. Uses default espace if not provided

Response

FieldTypeDescription
importIdstring
statusstring
resourcesarray
errorsarray

Related tools : bundle_preview, bundle_list


bundle_list

[DISCOVERY] List available use-case bundles from the catalog.

USE WHEN:

  • Need to see what pre-built bundles are available
  • Searching for a bundle by industry or complexity RETURNS: list of bundles with metadata (name, industry, complexity, resource counts).
Scopemcp.read
Read-onlyYes
DestructiveNo
IdempotentYes

Parameters

ParameterTypeRequiredDescription
complexitychoice (starter, standard, enterprise)NoFilter by complexity level
industrystringNoFilter by industry (e.g., saas, ecommerce, healthcare)
limitnumberNoMax results to return (default: 50)
offsetnumberNoOffset for pagination (default: 0)
searchstringNoSearch term to filter bundles by name or description

Response

FieldTypeDescription
bundlesarray
totalnumber

Example

{
"name": "bundle_list",
"arguments": {}
}

bundle_preview

Preview what importing a bundle would create, update, or conflict with.

USE WHEN:

  • Need to check for conflicts before importing
  • Want to see what resources will be created RETURNS: resources to create, conflicts with existing data, required connections.
Scopemcp.read
Read-onlyYes
DestructiveNo
IdempotentYes

Parameters

ParameterTypeRequiredDescription
bundleIdstringYesBundle identifier (slug from catalog)
conflictResolutionchoice (skip, update, fail)NoHow to handle conflicts with existing resources (default: update)

Related tools : bundle_get, bundle_import

Need help?

Contact us: Support and contact.