get-execution
Retrieve a specific workflow execution by ID using the n8n MCP Server, enabling secure access to execution details and data for integration with Large Language Models (LLMs).
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"
}