get-execution
Retrieve detailed execution data by ID from the N8N MCP server for specific workflow tracking and analysis.
Instructions
Retrieve a specific execution by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | ||
id | Yes | ||
includeData | No |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"id": {
"type": "number"
},
"includeData": {
"type": "boolean"
}
},
"required": [
"clientId",
"id"
],
"type": "object"
}