deploy_html
Publish HTML content and obtain a public URL using the EdgeOne Pages MCP. Simplify content deployment by uploading markup and accessing it instantly via a generated link.
Instructions
Deploy HTML content to EdgeOne Pages, return the public URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
value | Yes | Provide the full HTML markup you wish to publish. After deployment, the system will generate and return a public URL where your content can be accessed. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"value": {
"description": "Provide the full HTML markup you wish to publish.\nAfter deployment, the system will generate and return a public URL where your content can be accessed.",
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
}