bulkUpdateComponents
Update multiple Adobe Experience Manager components in bulk with validation, rollback, and error-handling options using the AEM MCP Server.
Instructions
Update multiple components in a single operation with validation and rollback support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
continueOnError | No | ||
updates | Yes | ||
validateFirst | No |
Input Schema (JSON Schema)
{
"properties": {
"continueOnError": {
"type": "boolean"
},
"updates": {
"items": {
"properties": {
"componentPath": {
"type": "string"
},
"properties": {
"type": "object"
}
},
"required": [
"componentPath",
"properties"
],
"type": "object"
},
"type": "array"
},
"validateFirst": {
"type": "boolean"
}
},
"required": [
"updates"
],
"type": "object"
}