add_todo
Create new tasks or reminders with title, description, category, priority, and due date to manage your todo list.
Instructions
Add a new todo item to the list. Use this when the user wants to create a new task or reminder. You can specify title, description, category, priority, and due date.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | The title of the todo item | |
| description | No | Optional description or additional details | |
| category | No | Optional category name (e.g., "Work", "Personal", "Shopping") | |
| priority | No | Priority level: 0=normal, 1=high, 2=urgent | |
| due_date | No | Optional due date in ISO format (e.g., "2024-12-31T23:59:59Z") | |
| 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) |