list_my_tasks_tool
Retrieve recently submitted quantum computing tasks from the QPanda3 Runtime MCP Server to monitor their status, backend devices, and creation dates.
Instructions
List user's recent tasks.
Retrieve a list of recently submitted quantum computing tasks.
Args: limit: Maximum number of tasks to return (default: 10).
Returns: Dictionary containing: - status: "success" or "error" - tasks: List of task information, each containing: - task_id: Task identifier - status: Current task status - creation_date: When task was created - backend: Target device - total_tasks: Total number of tasks returned
Example: tasks = list_my_tasks_tool(limit=5) for task in tasks["tasks"]: print(f"{task['task_id']}: {task['status']}")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||