aem_create_page
Create a new page in Adobe Experience Manager by specifying parent path, page name, title, and template using the AEM MCP Server tool.
Instructions
Create a new page in AEM
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | No | AEM host (default: localhost) | localhost |
pageName | Yes | Name of the new page | |
pageTitle | Yes | Title of the new page | |
parentPath | Yes | Parent path where to create the page | |
password | No | AEM password (default: admin) | admin |
port | No | AEM port (default: 4502) | |
template | Yes | Template path for the page | |
username | No | AEM username (default: admin) | admin |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"default": "localhost",
"description": "AEM host (default: localhost)",
"type": "string"
},
"pageName": {
"description": "Name of the new page",
"type": "string"
},
"pageTitle": {
"description": "Title of the new page",
"type": "string"
},
"parentPath": {
"description": "Parent path where to create the page",
"type": "string"
},
"password": {
"default": "admin",
"description": "AEM password (default: admin)",
"type": "string"
},
"port": {
"default": 4502,
"description": "AEM port (default: 4502)",
"type": "number"
},
"template": {
"description": "Template path for the page",
"type": "string"
},
"username": {
"default": "admin",
"description": "AEM username (default: admin)",
"type": "string"
}
},
"required": [
"parentPath",
"pageName",
"pageTitle",
"template"
],
"type": "object"
}