voiceos-todoist
Offers optional one-way sync from Apple Reminders to Todoist, copying due dates and notes, auto-creating Todoist projects per Reminders list, and closing Todoist tasks when reminders are completed or removed.
Provides voice-controlled task management for Todoist, including adding, listing, completing, and updating tasks with natural-language due dates, priorities, projects, and filters, as well as fuzzy completion matching.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@voiceos-todoistAdd milk to my shopping list tomorrow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Todoist for VoiceOS
Voice-control Todoist from VoiceOS β and optionally keep Apple Reminders in sync with it.
A local Model Context Protocol server that adds Todoist to VoiceOS, plus a one-way Apple Reminders β Todoist sync. Your API token stays on your Mac β nothing is sent anywhere except Todoist's own API.
ποΈ "Add buy milk to Todoist tomorrow at 9am"
ποΈ "What's on my Todoist for today?"
ποΈ "Mark the expenses task done"β¨ Features
Add / list / complete / update tasks by voice
Natural-language due dates β "tomorrow at 9am", "every friday"
Priorities (p1βp4), projects, and filters ("today", "overdue")
Fuzzy completion β "mark the milk task done" matches
Buy milkOptional Reminders sync β anything you drop in Apple Reminders lands in Todoist
One-command installer with guided token setup
No keys in code β token lives at
~/.config/todoist/token(chmod 600)
Related MCP server: Todoist MCP Server
π Quick start
git clone https://github.com/gabeperez/voiceos-todoist.git
cd voiceos-todoist
./setup.shThe installer will:
Walk you through getting your Todoist API token and validate + save it securely.
Install dependencies.
Register the integration in VoiceOS automatically.
Optionally set up the Reminders β Todoist sync (with a dry-run preview first).
Then restart VoiceOS (or toggle the Todoist integration) and start talking.
Prefer not to clone? Grab
todoist-voiceos.zipfrom the latest release, unzip, and run./setup.sh.
π Requirements
Getting your API token
Todoist β Settings β Integrations β Developer β API token (https://app.todoist.com/app/settings/integrations/developer). The setup script links you straight there and validates the token before saving.
π οΈ Tools
Tool | What it does |
| Create a task β NL due date, priority p1βp4, project, description. |
| List active tasks; filter by project or query ( |
| Close a task by id or content substring ( |
| Change text / due date / priority / description. |
| List your projects and their ids. |
Priority is UI-style: p1 = highest, p4 = none.
π Apple Reminders β Todoist sync (optional)
Mirrors incomplete reminders into Todoist on a 5-minute timer:
Due dates + notes are copied; each Reminders list maps to a Todoist project (auto-created).
Dedupe + completion state in
~/.config/todoist/sync-state.json.When a synced reminder is completed or removed, its Todoist task is closed.
One-way only β Todoist changes never flow back to Reminders.
npm run sync:dry # preview what would sync β writes nothing
sync/install-launchd.sh # enable the 5-minute background timer
sync/uninstall-launchd.sh # stop itThe first run triggers a macOS Automation β Reminders permission prompt β approve it.
Sync options
Set these in sync/run-sync.sh:
Env | Effect |
| Only sync these Reminders lists (default: all). |
| Force everything into one project (default: listβproject). |
| Don't close Todoist tasks on completion/removal. |
| Don't copy due dates. |
| Report what would sync; write nothing. |
π§Ή Uninstall
./uninstall.shUnregisters from VoiceOS, stops the sync timer, and offers to delete your saved token + state.
π How it works
βββββββββββββββββββββββββββββ
VoiceOS βββββββΊ mcp-server.ts (stdio) ββββΊ Todoist API v1
(voice) βββββββββββββββββββββββββββββ
βββββββββββββββββββββββββββββ
Apple RemindersββΊ sync (launchd, every 5m) ββββΊ Todoist API v1
βββββββββββββββββββββββββββββmcp-server.tsβ the MCP server VoiceOS launches over stdio (viastart.sh).sync/sync-reminders-to-todoist.mjsβ reads Reminders via JXA, pushes to Todoist.register-voiceos.mjsβ adds/removes the entry in VoiceOS'sconfig.json.Uses the Todoist unified API v1 (
/api/v1); the old/rest/v2is deprecated.
π Privacy
Your token is stored locally at ~/.config/todoist/token (chmod 600) and used only
to call Todoist's API directly from your Mac. Nothing is proxied through any third
party. The Reminders sync reads your local Reminders via macOS scripting and writes
only to your Todoist.
License
MIT Β© Gabe Perez
Available Tools
5 toolsadd_taskA
Add a task to Todoist. Supports natural-language due dates ('tomorrow at 5pm', 'every monday') and a priority of p1 (highest) to p4 (none). Use when the user wants to create a to-do, reminder, or task in Todoist.
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | Natural-language due date, e.g. 'tomorrow 9am', 'every friday'. | |
| content | Yes | The task text, e.g. 'Buy milk'. | |
| project | No | Project name to file under. Omitted = Inbox. | |
| priority | No | p1 (highest) to p4 (none). Default p4. | |
| description | No | Longer note/details for the task. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses natural-language parsing and priority range, which is good, but does not cover error cases, side effects, or rate limits. Lacks depth for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core action, and every word adds value. Efficient and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 5 parameters (1 required) and no output schema, the description covers the main purpose and key features (natural language, priority). Lacks guidance on required permissions or error handling, but is otherwise sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the description adds minimal value. It reiterates natural-language due dates and priority meaning, but these are already in the schema descriptions. Scores baseline 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Add a task to Todoist' with a specific verb and resource. It distinguishes from siblings by explicitly noting 'Use when the user wants to create a to-do, reminder, or task,' implying this is for creation versus completion, listing, or updating.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells when to use the tool ('when the user wants to create a to-do, reminder, or task'). It does not explicitly mention when not to use it or name alternatives, but the sibling context and the explicit 'create' guidance are sufficient for a 4.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
complete_taskA
Mark a Todoist task complete. Pass either the task id, or a piece of the task text to match (e.g. 'milk' to complete 'Buy milk'). Use when the user says they finished or did something.
| Name | Required | Description | Default |
|---|---|---|---|
| match | No | Substring of the task content to find the task to complete. | |
| task_id | No | Exact task id. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It explains the two identification methods (task_id or match substring) with an example, which is sufficient for a simple completion action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the action, no unnecessary words. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with no output schema and no annotations, the description covers the essential behavior. However, it doesn't address edge cases like multiple matches or missing tasks, which would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions, but the description adds extra value by explaining the either/or usage and giving a concrete example ('milk' to complete 'Buy milk').
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Mark a Todoist task complete' with a specific verb and resource. It distinguishes from siblings like add_task and update_task by focusing on completion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states 'Use when the user says they finished or did something.' This provides clear context, though it lacks explicit when-not-to-use instructions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_projectsA
List Todoist projects (their names and ids). Use to see available projects before filing or filtering tasks.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations, but description accurately conveys read-only behavior (listing names and ids). No contradictions or missing behavioral info for a zero-parameter tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise: one 12-word sentence. Front-loaded with action and purpose, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only tool with no output schema, the description fully explains what it does and when to use it. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 0 parameters with 100% coverage. Baseline score of 4 applies as there are no parameter details needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'List', resource 'Todoist projects', and what is returned ('names and ids'). It distinguishes from sibling tools like list_tasks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says to use 'before filing or filtering tasks', providing clear context. Does not explicitly mention when not to use, but for a simple list tool this is adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tasksA
List active (incomplete) Todoist tasks. Optionally filter by project name or by a Todoist filter query (e.g. 'today', 'overdue', '@work'). Use when the user asks what's on their list, what's due, or to review tasks.
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Todoist filter query, e.g. 'today', 'overdue', 'next 7 days'. | |
| project | No | Project name to filter by. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full burden. It states it lists active tasks but does not disclose behavior like sorting, pagination, or safety (read-only). Missing details on rate limits or authentication needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with front-loaded purpose and immediate context. No unnecessary words; every sentence contributes meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description could mention return format or limitations. However, it sufficiently covers the tool's function and parameters for a simple list operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for both parameters. The description adds value by giving example filter values like 'today', 'overdue', '@work', clarifying usage beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists active Todoist tasks, specifying the resource and scope. It distinguishes from siblings like add_task or complete_task by focusing on listing active items.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use the tool: when the user asks about their list, due items, or to review tasks. It lacks exclusions or alternatives, but provides clear context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_taskA
Update an existing Todoist task β change its text, due date, priority, or description. Identify it by task_id or by a content substring match.
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | New natural-language due date. Pass 'no date' to clear. | |
| match | No | Substring of the task content to find the task. | |
| content | No | New task text. | |
| task_id | No | Exact task id. | |
| priority | No | p1 (highest) to p4 (none). | |
| description | No | New note/details. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It mentions 'update' but does not disclose whether unspecified fields remain unchanged, any destructive behavior, permissions needed, or return value. Lacks crucial details for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, front-loaded sentence that directly states purpose, lists modifiable fields, and explains identification. No superfluous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequate for locating the tool, but lacks information on return value, side effects, and partial update behavior. With no output schema and no annotations, additional details would enhance completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers all 6 parameters with descriptions (100% coverage). Description adds value by clarifying that task identification can use either task_id or content substring match, which is not fully explicit in the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it updates an existing Todoist task and lists specific fields (text, due date, priority, description). Identifies two methods to locate the task (by task_id or content substring), distinguishing it from sibling tools like add_task and complete_task.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context that the tool modifies existing tasks and explains identification options, but does not explicitly state when to use it versus alternatives or mention exclusions (e.g., avoid for completing tasks).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a distinct purpose: adding, completing, updating tasks, and listing projects or tasks. No overlapping functionality.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., add_task, list_projects), making it predictable.
With 5 tools, the set is well-scoped for a task management integration, covering core operations without being too sparse or bloated.
Covers add, complete, update, and list tasks/projects. Missing delete/archive task, but the core workflow is fully supported.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Manage tasks, Focus Zone, notes, projects, and task history from compatible AI assistants.
Official Todoist MCP server for AI assistants to manage tasks, projects, and workflows.
Manage Superlist tasks and lists in plain language from any MCP-compatible AI agent.
MCP connector for Apple Reminders β search, create, complete, and edit via your own Mac.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Todoist tasks, projects, labels, sections, and comments through natural conversation. Supports comprehensive task operations including creation, updates, completion, and organization with natural language quick-add functionality.
- AlicenseNot gradedqualityCmaintenanceConnects AI assistants to Todoist for comprehensive task management, enabling natural language creation, updating, and organization of tasks, projects, sections, and labels.133MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Todoist tasks, projects, sections, and labels through natural language, supporting task creation, updates, completion, and intelligent organization of your workflow.13MIT
- AlicenseAqualityFmaintenanceEnables AI assistants to manage Todoist tasks, projects, and labels through natural language, with support for filters, priorities, and natural language dates.12MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gabeperez/voiceos-todoist'
If you have feedback or need assistance with the MCP directory API, please join our Discord server