get_flow_executions
Retrieve execution history of a specific flow on HiveFlow MCP Server, providing flow ID and optional limit to manage results efficiently.
Instructions
Obtiene el historial de ejecuciones de un flujo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flowId | Yes | ID del flujo | |
limit | No | Límite de resultados |
Input Schema (JSON Schema)
{
"properties": {
"flowId": {
"description": "ID del flujo",
"type": "string"
},
"limit": {
"default": 10,
"description": "Límite de resultados",
"type": "number"
}
},
"required": [
"flowId"
],
"type": "object"
}