tasks_summary
Retrieve task status counts and identify work-in-progress tasks from the MCP Tasks server for efficient project tracking and management.
Instructions
Get per-status task counts and the WIP task(s). Redundant right after tasks_add/tasks_update
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source_id | No | Source ID from task_setup() response - Defaults to most recent in the workspace if not provided - Try to always provide it! - If you don't have it, ask the user for a file path and call task_setup() |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"source_id": {
"description": "Source ID from task_setup() response\n- Defaults to most recent in the workspace if not provided\n- Try to always provide it!\n- If you don't have it, ask the user for a file path and call task_setup()",
"minLength": 1,
"type": "string"
}
},
"type": "object"
}