get_task_status
Check the status of all tasks managed by the MCP Orchestrator Server to monitor progress, track dependencies, and ensure efficient task coordination.
Instructions
Get status of all tasks
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:297-305 (handler)The handler function for the 'get_task_status' tool. It returns a JSON string containing the status of all tasks loaded from tasks.json.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 input schema (no required arguments).{ name: "get_task_status", description: "Get status of all tasks", inputSchema: { type: "object", properties: {}, required: [] } },
- src/index.ts:438-446 (schema)Schema definition for the 'get_task_status' tool provided in the tool listing.{ name: "get_task_status", description: "Get status of all tasks", inputSchema: { type: "object", properties: {}, required: [] } },