Skip to main content
Glama

Todoist for VoiceOS

Voice-control Todoist from VoiceOS β€” and optionally keep Apple Reminders in sync with it.

License: MIT Platform: macOS Todoist API v1

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 milk

  • Optional 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.sh

The installer will:

  1. Walk you through getting your Todoist API token and validate + save it securely.

  2. Install dependencies.

  3. Register the integration in VoiceOS automatically.

  4. 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.zip from the latest release, unzip, and run ./setup.sh.


πŸ“‹ Requirements

OS

macOS with VoiceOS installed

Runtime

Node.js 18+ (setup checks for it)

Account

A Todoist account

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

add_task

Create a task β€” NL due date, priority p1–p4, project, description.

list_tasks

List active tasks; filter by project or query (today, overdue).

complete_task

Close a task by id or content substring (milk β†’ Buy milk).

update_task

Change text / due date / priority / description.

list_projects

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 it

The first run triggers a macOS Automation β†’ Reminders permission prompt β€” approve it.

Sync options

Set these in sync/run-sync.sh:

Env

Effect

SYNC_LISTS="Inbox,Work"

Only sync these Reminders lists (default: all).

TODOIST_PROJECT="Inbox"

Force everything into one project (default: list→project).

SYNC_COMPLETIONS="false"

Don't close Todoist tasks on completion/removal.

SYNC_DUE="false"

Don't copy due dates.

DRY_RUN="true"

Report what would sync; write nothing.


🧹 Uninstall

./uninstall.sh

Unregisters 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 (via start.sh).

  • sync/sync-reminders-to-todoist.mjs β€” reads Reminders via JXA, pushes to Todoist.

  • register-voiceos.mjs β€” adds/removes the entry in VoiceOS's config.json.

  • Uses the Todoist unified API v1 (/api/v1); the old /rest/v2 is 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 tools
add_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
dueNoNatural-language due date, e.g. 'tomorrow 9am', 'every friday'.
contentYesThe task text, e.g. 'Buy milk'.
projectNoProject name to file under. Omitted = Inbox.
priorityNop1 (highest) to p4 (none). Default p4.
descriptionNoLonger note/details for the task.

TDQS

A4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
matchNoSubstring of the task content to find the task to complete.
task_idNoExact task id.

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters5/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
filterNoTodoist filter query, e.g. 'today', 'overdue', 'next 7 days'.
projectNoProject name to filter by.

TDQS

A4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
dueNoNew natural-language due date. Pass 'no date' to clear.
matchNoSubstring of the task content to find the task.
contentNoNew task text.
task_idNoExact task id.
priorityNop1 (highest) to p4 (none).
descriptionNoNew note/details.

TDQS

A3.9/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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

A4.3/5.0
Disambiguation5/5

Each tool has a distinct purpose: adding, completing, updating tasks, and listing projects or tasks. No overlapping functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., add_task, list_projects), making it predictable.

Tool Count5/5

With 5 tools, the set is well-scoped for a task management integration, covering core operations without being too sparse or bloated.

Completeness4/5

Covers add, complete, update, and list tasks/projects. Missing delete/archive task, but the core workflow is fully supported.

Maintenance

ActivityStale
ResponsivenessSyncing

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

Related MCP Servers

Latest Blog Posts

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