MCPTools
List Workflows
List all workflows and their status
list_workflows
Lists all workflows (flows) for the brand. Returns workflow IDs, names, types, and status.
Parameters
| Name | Type | Required | Description | Default |
|---|---|---|---|---|
status | string | No | Filter by status: active, draft | All |
includeHistorical | boolean | No | Include historical lookback flows | false |
Workflow Types
checkout— Abandoned cart recoveryorder— Post-purchase flowscart— Cart-based flowsschedule— Scheduled campaignstap_to_text— Tap-to-text opt-in flowsevents— Event/campaign-triggered flowshistorical— Historical lookback flows
Example Prompt
Which workflows are currently active?Example Response
{
"workflows": [
{
"id": "wf-001",
"name": "Abandoned Cart - Main",
"type": "checkout",
"isPaused": false,
"status": "active"
},
{
"id": "wf-002",
"name": "Post Purchase Upsell",
"type": "order",
"isPaused": true,
"status": "active"
}
],
"totalCount": 2
}Notes
- Workflow IDs from this tool are needed for
get_workflow_detailsand for filteringdashboard-statsandlist_conversations - A workflow can have
status: "active"butisPaused: true— this means it's configured but temporarily paused - Use
includeHistorical: trueto see historical lookback flows (excluded by default)