get_task_status
Check the status of all tasks in the orchestration system to monitor progress and coordinate workflows.
Instructions
Get status of all tasks
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:297-305 (handler)Handler implementation for the 'get_task_status' tool. It returns a JSON string containing the status of all tasks.case "get_task_status": { debug('Getting task status'); return { content: [{ type: "text", text: JSON.stringify(Object.values(tasks), null, 2) }] }; }
- src/index.ts:438-446 (registration)Registration of the 'get_task_status' tool in the ListTools response, including its name, description, and empty input schema.{ name: "get_task_status", description: "Get status of all tasks", inputSchema: { type: "object", properties: {}, required: [] } },