todoist_quick_add_task
Quickly create tasks in Todoist using natural language input. Specify details like due dates, reminders, and notes directly in the task description for efficient task management.
Instructions
Create a task using Todoist's Quick Add feature with natural language parsing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note | No | Additional note for the task (optional) | |
reminder | No | Reminder time (optional) | |
text | Yes | Natural language text for quick task creation (e.g., 'Buy milk tomorrow at 2pm #shopping') |
Input Schema (JSON Schema)
{
"properties": {
"note": {
"description": "Additional note for the task (optional)",
"type": "string"
},
"reminder": {
"description": "Reminder time (optional)",
"type": "string"
},
"text": {
"description": "Natural language text for quick task creation (e.g., 'Buy milk tomorrow at 2pm #shopping')",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}