get_todo
Retrieve complete details of a specific todo by providing its ID, including its description, status, due date, and tags.
Instructions
Fetch the full details of a single todo by ID, including description, status, due date, and tags. Example: {"id":"def67890"} → {"id":"def67890-...","title":"...","description":"...","status":"open","due_date":"2026-06-01","tags":[...]}. Side effects: read-only. Errors if the id does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Todo UUID. Short IDs (first 8 characters) are also accepted. |