list_todos
Retrieve and filter todo items by completion status, category, or priority to manage tasks effectively.
Instructions
List todos with optional filters. Use this when the user wants to see their todos. You can filter by completion status, category, or priority.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| show_completed | No | Whether to include completed todos in the results | |
| category | No | Optional category name to filter by | |
| priority | No | Optional priority level to filter by (0, 1, or 2) | |
| postgresUrl | No | Override the Postgres connection URL (defaults to MCP_POSTGRES_URL) | |
| connectionId | No | Browser connection ID (used to construct connection URL if postgresUrl not provided) | |
| authToken | No | Auth token for authentication (used to construct connection URL if postgresUrl not provided) |