Create a task in Todoist via the n8n MCP server. Use whenever the user says they need to do something, track something, remember something, or asks to add a task. Works with natural language — no rigid syntax needed.
Trigger on intent, not exact words. Examples that should create a task:
Do not activate for questions, discussions, or things the user is describing rather than committing to do.
create_task with:
title — short, actionable. Start with a verb if possible.description — include any useful context the user gave.due_date — if mentioned, pass as-is (n8n handles parsing).priorityTask added: "<title>".| User says | Priority |
|---|---|
| urgent, ASAP, today, blocking | 1 |
| soon, this week, important | 2 |
| eventually, low priority, someday | 3 |
| nothing stated | 4 |
The user configures the n8n ↔ Todoist connection themselves using OAuth before using this skill. Do not attempt to set up credentials or ask for API keys — that is out of scope here.