fetch_todos
Get all To-Do items with pagination (20 per page), search, and advanced filters. ADMIN ONLY: This tool requires admin privileges. Non-admin users will receive a 403 Forbidden error from the API.
fetch_todos
When to use
Get all To-Do items with pagination (20 per page), search, and advanced filters. ADMIN ONLY: This tool requires admin privileges. Non-admin users will receive a 403 Forbidden error from the API.
Parameters to validate before calling
page (number, optional) — Page number (default: 1, 20 items per page).
search (string, optional) — Search by title or description (case-insensitive).
status (string, optional) — one of: pending, completed — Filter by status: "pending" or "completed".
priority (number, optional) — one of: 1, 2, 3 — Filter by priority: 1 = Low, 2 = Medium, 3 = High.
resource (string, optional) — Filter by resource affected (e.g. "renaissance", "api", "aws", "general").
pinned (boolean, optional) — Filter pinned items only when true.
date_from (string, optional) — Start date filter in ISO 8601 format (e.g. "2026-01-01").
date_to (string, optional) — End date filter in ISO 8601 format (e.g. "2026-12-31").
year (number, optional) — Filter by creation year (ignored if date_from/date_to provided).
month (number, optional) — Filter by creation month 1-12 (requires year parameter).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default: 1, 20 items per page). | |
| year | No | Filter by creation year (ignored if date_from/date_to provided). | |
| month | No | Filter by creation month 1-12 (requires year parameter). | |
| pinned | No | Filter pinned items only when true. | |
| search | No | Search by title or description (case-insensitive). | |
| status | No | Filter by status: "pending" or "completed". | |
| date_to | No | End date filter in ISO 8601 format (e.g. "2026-12-31"). | |
| priority | No | Filter by priority: 1 = Low, 2 = Medium, 3 = High. | |
| resource | No | Filter by resource affected (e.g. "renaissance", "api", "aws", "general"). | |
| date_from | No | Start date filter in ISO 8601 format (e.g. "2026-01-01"). |