createPage
Generate a new Adobe Experience Manager (AEM) page by specifying parent path, title, and template via AEM MCP Server's REST/JSON-RPC APIs for streamlined content management.
Instructions
Create a new page in AEM
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| parentPath | Yes | ||
| properties | No | ||
| template | Yes | ||
| title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
},
"parentPath": {
"type": "string"
},
"properties": {
"type": "object"
},
"template": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"parentPath",
"title",
"template"
],
"type": "object"
}