AdlyseAdlyseMCP Docs
⌘K
Overview
adlyse-insights
list_ad_accountsget_dashboard_snapshotget_impact_analysislist_guidelinesget_guideline
adlyse-reports
list_report_templateslist_reportsget_reportgenerate_reportlist_report_targets
adlyse-ads
list_campaignsget_performancelist_adsget_ad_performancelist_change_eventsupdate_campaign_statusupdate_campaign_budget
adlyse-workflows
list_workflowsget_workflowrun_workflowget_run_status
  1. Overview/
  2. adlyse-workflows

list_workflows

List every user-facing workflow in your organization. Only “root” agents (the ones selectable from the UI) are returned; sub-workflows used internally by other agents are hidden.

Parameters#

None.

Returns#

json
{
  "workflows": [
    {
      "id": "agent_abc",
      "name": "Enrich Contact",
      "description": "Takes an email; returns company + role + seniority.",
      "input_schema": {
        "type": "object",
        "properties": { "email": { "type": "string" } },
        "required": ["email"]
      },
      "updated_at": "2026-04-20T12:00:00Z"
    }
  ],
  "count": 1
}
FieldDescription
workflows[].idPass to get_workflow or run_workflow
workflows[].input_schemaJSON Schema the workflow’s trigger expects

Errors#

error_typeWhen
auth_errorMissing / invalid API key

Example#

Response: as shown above.

See also#

  • get_workflow — full detail including output schema
  • run_workflow — invoke
←Previous
adlyse-workflows
Next→
get_workflow