recent_executions
List recent executions of an Apps Script project with details on function, status, start time, and duration. Optionally filter by specific function or show only failures.
Instructions
List recent executions of an Apps Script project (function, status, start time, duration). Optionally filter to failures. Uses execution metadata — no extra scope, and does not include console.log output.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageSize | No | Max executions to return (API max 50, default 20). | |
| scriptId | Yes | The ID of the script project. | |
| pageToken | No | Pagination token from a previous response. | |
| functionName | No | Filter to executions of a specific function. | |
| onlyFailures | No | Only return failed / timed-out / canceled executions. |