split_package
Split large deployment packages into smaller chunks to simplify uploads on Optimizely DXP MCP Server. Specify a package path and optional chunk size for efficient file handling.
Instructions
Split large package into smaller chunks for easier upload
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chunkSizeMB | No | ||
packagePath | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chunkSizeMB": {
"default": 50,
"type": "number"
},
"packagePath": {
"type": "string"
}
},
"required": [
"packagePath"
],
"type": "object"
}