createComponent
Add a new component to a specified page by defining its type, resource, and properties using the MCP Server for Adobe Experience Manager.
Instructions
Create a new component on a page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| componentType | Yes | ||
| name | No | ||
| pagePath | Yes | ||
| properties | No | ||
| resourceType | Yes |
Input Schema (JSON Schema)
{
"properties": {
"componentType": {
"type": "string"
},
"name": {
"type": "string"
},
"pagePath": {
"type": "string"
},
"properties": {
"type": "object"
},
"resourceType": {
"type": "string"
}
},
"required": [
"pagePath",
"componentType",
"resourceType"
],
"type": "object"
}