sites_publish
Publish Webflow sites to specified custom domains or a Webflow subdomain by providing the site ID and domain details. Manage site deployment efficiently with this MCP server tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customDomains | No | ||
publishToWebflowSubdomain | No | ||
site_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customDomains": {
"items": {
"type": "string"
},
"type": "array"
},
"publishToWebflowSubdomain": {
"default": false,
"type": "boolean"
},
"site_id": {
"type": "string"
}
},
"required": [
"site_id"
],
"type": "object"
}