n8n_retry_execution
Retry failed workflow executions in n8n by specifying the execution ID to restart and complete previously unsuccessful operations.
Instructions
Retry a failed execution
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Execution ID to retry |
Implementation Reference
- src/n8n-client.ts:130-133 (handler)The actual HTTP request implementation for retrying an n8n execution.
async retryExecution(id: string): Promise<any> { const response = await this.client.post(`/executions/${id}/retry`); return response.data; } - src/index.ts:601-610 (registration)Tool registration for n8n_retry_execution.
{ name: 'n8n_retry_execution', description: 'Retry a failed execution', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Execution ID to retry' }, }, required: ['id'], }, - src/index.ts:172-178 (handler)Tool handler logic which calls the n8n client.
case 'n8n_retry_execution': { if (!args?.id) throw new Error('id is required'); const result = await n8nClient.retryExecution(args.id as string); return { content: [{ type: 'text', text: formatResponse(result) }], }; }