list_tasks
List all background tasks for the current user, filtering by status or task type to view specific operations.
Instructions
List all background tasks for the current user.
Args: status: Filter by status: "pending", "running", "completed", "failed", "cancelled". task_type: Filter by type: "clone_catalog".
Returns: JSON list of tasks with their status and basic info.
Example: list_tasks(status="running") -> [{"task_id": "abc123", "status": "running", ...}]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | ||
| task_type | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |