delete-execution
Remove a specific workflow execution by ID from the n8n MCP Server, ensuring precise management of workflow history and resources. Requires client ID and execution ID for targeted deletion.
Instructions
Delete a specific execution by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | ||
id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"id": {
"type": "number"
}
},
"required": [
"clientId",
"id"
],
"type": "object"
}