deploy_list
List recent deploy operations for a project, returning operation IDs, statuses, and timestamps. Supports pagination for building deploy-history UIs.
Instructions
List recent deploy operations for a project. Returns operation_id, status, release_id, and timestamps. Use this to build deploy-history UIs or to find a recent operation_id to feed into deploy_resume / deploy_events. Pass limit to bound the result set; the gateway also returns a cursor for pagination when there are more.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID to list operations for. Required (apikey-gated). | |
| limit | No | Maximum number of operations to return. Forwarded to the gateway as `?limit=`; the gateway picks a default when omitted. | |
| cursor | No | Pagination cursor returned by a previous deploy_list response. Forwarded to the gateway as `?cursor=`. |