delete-execution
Remove a specific execution by its ID from the MCP-N8N server. Requires client ID and execution ID for precise 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"
}