update_workflow_name_or_comment
Modify a workflow's name or comment by specifying its ID. Use this tool to update workflow metadata on Alteryx Servers via the AYX-MCP-Wrapper interface.
Instructions
Update a workflow name or comment by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | ||
name | Yes | ||
workflow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"title": "Comment",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"workflow_id": {
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id",
"name",
"comment"
],
"title": "update_workflow_name_or_commentArguments",
"type": "object"
}