activate-workflow
Trigger workflow execution on the MCP-N8N server by providing a workflow ID and client ID. Input must be in compact, single-line JSON format.
Instructions
Activate a workflow by ID. This will enable the workflow to run. 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"
}