Skip to content
AdlyseMCP Docs
Product guideMCP reference
⌘K
Open Adlyse
⌘K
Overview
QuickstartAuthentication
adlyse-insights
adlyse-reports
adlyse-ads
adlyse-workflows
list_workflowsget_workflowrun_workflowget_run_status
adlyse-adminadlyse-all
  1. Overview
  2. adlyse-workflows

list_releases

List all releases of a workflow, newest first.

Parameters#

NameTypeRequiredDefaultDescription
workflow_idstringyesThe draft workflow id (agent_…)

Returns#

json
{
  "workflow_id": "agent_abc",
  "production_release_id": "release_abc",
  "releases": [
    {
      "id": "release_abc",
      "name": "Enrich Contact",
      "notes": "Switch to Fable 5",
      "snapshot_id": "agent_snap_123",
      "is_production": true,
      "created_at": "2026-06-09T12:00:00Z"
    }
  ],
  "count": 1
}

production_release_id is null when no release is promoted — run_workflow with target="production" will fail until one is.

Errors#

error_typeWhen
auth_errorMissing / invalid API key
not_foundWorkflow id doesn’t exist or is outside your org

See also#

  • create_release — add a new version
  • set_production_release — change which one is live