list_workflows
Search and filter workflows in Rowan MCP Server by criteria like name, type, status, folder, and public/starred status with pagination support.
Instructions
List workflows subject to the specified criteria.
Args: parent_uuid: UUID of parent folder to filter by. Empty string for all folders name_contains: Substring to search for in workflow names. Empty string for all names public: Filter by public status ("true"/"false"). Empty string for both starred: Filter by starred status ("true"/"false"). Empty string for both status: Filter by workflow status code. Empty string for all statuses workflow_type: Filter by workflow type (e.g., 'conformer_search', 'pka'). Empty string for all types page: Page number for pagination (0-indexed) size: Number of workflows per page
Returns: List of workflow dictionaries that match the search criteria
Raises: HTTPError: If the request to the API fails
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_uuid | No | UUID of parent folder to filter by. Empty string for all folders | |
| name_contains | No | Substring to search for in workflow names. Empty string for all names | |
| public | No | Filter by public status ('true'/'false'). Empty string for both | |
| starred | No | Filter by starred status ('true'/'false'). Empty string for both | |
| status | No | Filter by workflow status code. Empty string for all statuses | |
| workflow_type | No | Filter by workflow type (e.g., 'conformer_search', 'pka'). Empty string for all types | |
| page | No | Page number for pagination (0-indexed) | |
| size | No | Number of workflows per page |