delete-workflow
Permanently remove a workflow by specifying its ID using JSON input. Designed for secure workflow management on the n8n MCP Server, ensuring irreversible deletion with a simple command.
Instructions
Delete a workflow by ID. This action cannot be undone. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | ||
id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"clientId",
"id"
],
"type": "object"
}