delete_workflow
Permanently remove a workflow by its ID from the MCP n8n-builder server. Use this irreversible action carefully; consider deactivating workflows if reuse is possible.
Instructions
Permanently deletes a workflow by its ID. This action cannot be undone, so use with caution. Consider deactivating workflows instead if you might need them again later.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the workflow to delete - can be obtained from list_workflows |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID of the workflow to delete - can be obtained from list_workflows",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}