deactivate-workflow
Stop a specific workflow from running by providing its ID and client ID in compact JSON format. Prevents the workflow from executing further tasks on the MCP N8N server.
Instructions
Deactivate a workflow by ID. This will prevent the workflow from running. 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"
}