n8n MCP Server

deactivate-workflow

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

NameRequiredDescriptionDefault
clientIdYes
idYes

Input Schema (JSON Schema)

{ "properties": { "clientId": { "type": "string" }, "id": { "type": "string" } }, "required": [ "clientId", "id" ], "type": "object" }