list_flows
Retrieve and filter all user workflows by status (active, paused, stopped, draft) with optional result limits. Integrates with HiveFlow MCP Server for AI-driven automation flow management.
Instructions
Lista todos los flujos de trabajo del usuario
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Límite de resultados (opcional) | |
status | No | Filtrar por estado del flujo (opcional) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Límite de resultados (opcional)",
"type": "number"
},
"status": {
"description": "Filtrar por estado del flujo (opcional)",
"enum": [
"active",
"paused",
"stopped",
"draft"
],
"type": "string"
}
},
"type": "object"
}