todoist_create_task
Todoist · macOS · Windows
Effect: write (strongest supported action). Status: gated.
Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.
macOS
Purpose
Create a Todoist task. Optionally set a project, a natural-language due date (due_string, e.g. 'tomorrow 5pm', 'every monday'), and priority (1=normal … 4=urgent).
Required inputs
content— The task text
Permissions and confirmation
No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — macOS
{
"properties": {
"content": {
"description": "The task text",
"type": "string"
},
"due_string": {
"description": "Natural-language due date, e.g. 'tomorrow 5pm', 'next monday'",
"type": "string"
},
"priority": {
"description": "1 (normal) to 4 (urgent). Todoist UI p1 = 4.",
"type": "integer"
},
"project_id": {
"description": "Project to add it to (default: Inbox)",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"content": "Meeting agenda: review the launch checklist."
}Windows
Purpose
Create a Todoist task. Optionally set a project, a natural-language due date (due_string, e.g. 'tomorrow 5pm', 'every monday'), and priority (1=normal … 4=urgent).
Required inputs
content— The task text
Permissions and confirmation
No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — Windows
{
"properties": {
"content": {
"description": "The task text",
"type": "string"
},
"due_string": {
"description": "Natural-language due date, e.g. 'tomorrow 5pm', 'next monday'",
"type": "string"
},
"priority": {
"description": "1 (normal) to 4 (urgent). Todoist UI p1 = 4.",
"type": "integer"
},
"project_id": {
"description": "Project to add it to (default: Inbox)",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"content": "Meeting agenda: review the launch checklist."
}