marketo_clone_form
Clone existing Marketo forms with specified form ID, name, and folder ID using the Marketo MCP Server. Streamline form management and ensure consistent structure across campaigns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
folderId | Yes | ||
formId | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"folderId": {
"type": "number"
},
"formId": {
"type": "number"
},
"name": {
"type": "string"
}
},
"required": [
"formId",
"name",
"folderId"
],
"type": "object"
}