Reference

lessly_list_deployments

List recent deployments for an app, newest first.

Tool

lessly_list_deployments

List recent deployments for an app, newest first.

List recent deployments for an app, newest first. For a single deployment's status or logs, use lessly_get_deployment instead. Returns: { deployment_id, git_ref, environment, status, created_at }[]. Paginated; default limit 20. Filter by environment or status to narrow.

Arguments

Name Type Required Description
app string Slug of the Lessly app.
environment "production" | "staging" | "preview" Restrict results to one environment.
status "ready" | "failed" | "building" | "canceled" Restrict results to one terminal or in-flight state.
limit number Maximum number of deployments to return. Capped at 100. default: 20

Try it

Show me the last 5 production deployments of acme-store.

When to use

List recent deployments for an app, newest first. For a single deployment's status or logs, use lessly_get_deployment instead. Returns: { deployment_id, git_ref, environment, status, created_at }[]. Paginated; default limit 20. Filter by environment or status to narrow.

Example

Ask your agent something like this:

Show me the last 5 production deployments of acme-store.

The agent will invoke lessly_list_deployments with these arguments:

json
{
  "app": "acme-store",
  "environment": "production",
  "limit": 5
}

Esc

Start typing to search the docs.

navigate select