Unstructured API MCP Server

Official

list_workflows

List workflows from the Unstructured API. Args: destination_id: Optional destination connector ID to filter by source_id: Optional source connector ID to filter by status: Optional workflow status to filter by Returns: String containing the list of workflows

Input Schema

NameRequiredDescriptionDefault
destination_idNo
source_idNo
statusNo

Input Schema (JSON Schema)

{ "properties": { "destination_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Destination Id" }, "source_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Source Id" }, "status": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Status" } }, "title": "list_workflowsArguments", "type": "object" }