get_task
Retrieve a specific task by providing its project and task IDs. Access its full markdown, tags, and due date for detailed review.
Instructions
Read-only. Fetch one item (task/note) by its project id + task id, including the full markdown body, tags, and due date. Use after find/list_projects give you the ids. Returns the single item object, or an error if not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Id of the project/folder the item lives in (from `find` results or `list_projects`). | |
| taskId | Yes | Id of the item to fetch (from `find` results). |