deleteComponent
Remove a component from Adobe Experience Manager by specifying its path and optional force flag using the MCP Server's API.
Instructions
Delete a component from AEM
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| componentPath | Yes | ||
| force | No |
Input Schema (JSON Schema)
{
"properties": {
"componentPath": {
"type": "string"
},
"force": {
"type": "boolean"
}
},
"required": [
"componentPath"
],
"type": "object"
}