# How to connect Todoist MCP to Claude

```json
{
  "title": "How to connect Todoist MCP to Claude",
  "toolkit": "Todoist MCP",
  "toolkit_slug": "todoist_mcp",
  "framework": "Claude Cowork",
  "framework_slug": "claude-cowork",
  "url": "https://composio.dev/toolkits/todoist_mcp/framework/claude-cowork",
  "markdown_url": "https://composio.dev/toolkits/todoist_mcp/framework/claude-cowork.md",
  "updated_at": "2026-09-07T05:40:29.843Z"
}
```

## Introduction

Claude is Anthropic's AI assistant, available on the web, in the desktop app, and on mobile. Cowork is its agent for knowledge work, and it runs on all of those surfaces too. Connected to your apps, Claude can work with your files and services to accomplish complex tasks on your behalf.
This guide walks you through the easiest and most secure way to connect your Todoist account to Claude via Composio Connect, enabling it to create project Q3 roadmap and tasks, list all overdue tasks assigned to me, complete today's high priority tasks in Inbox, and more such actions on your behalf without compromising your account security.
Setup is the same on Claude Web, Desktop, and Cowork, and you only need to do it once. The connector is tied to your account, so it's available in all three.

## Also integrate Todoist MCP with

- [ChatGPT Work](https://composio.dev/toolkits/todoist_mcp/framework/chatgpt)
- [Hermes](https://composio.dev/toolkits/todoist_mcp/framework/hermes-agent)

## Connect Todoist MCP to Claude Cowork

### Connecting Todoist to Claude Web, Desktop, and Cowork
1. Open Customize
In Claude Desktop, click Customize in the left sidebar, then select Connectors and click the + icon at the top.
2. Add the Composio MCP server
Click Add custom connector and paste in the Composio MCP server URL:

```bash
https://connect.composio.dev/mcp
```

## What is the Todoist MCP server, and what's possible with it?

The Todoist MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Todoist account. It provides structured and secure access so your agent can perform Todoist operations on your behalf.

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `TODOIST_MCP_ADD_COMMENTS` | Add-comments | Add multiple comments to tasks or projects, optionally notifying collaborators. Each comment must specify either taskId or projectId. |
| `TODOIST_MCP_ADD_FILTERS` | Add-filters | Add one or more new personal filters. Filters are saved custom views using query syntax to organize tasks. |
| `TODOIST_MCP_ADD_LABELS` | Add-labels | Add one or more new personal labels. |
| `TODOIST_MCP_ADD_PROJECTS` | Add-projects | Add one or more new projects. |
| `TODOIST_MCP_ADD_REMINDERS` | Add-reminders | Add reminders to tasks. Supports three types: "relative" (minutes before due), "absolute" (specific date/time), or "location" (geofence-triggered). Each reminder must specify a taskId. |
| `TODOIST_MCP_ADD_SECTIONS` | Add-sections | Add one or more new sections to projects. |
| `TODOIST_MCP_ADD_TASKS` | Add-tasks | Add one or more tasks to a project, section, or parent. Supports assignment to project collaborators. |
| `TODOIST_MCP_ANALYZE_PROJECT_HEALTH` | Analyze-project-health | Trigger a new health analysis for a project. Use this when the health data is stale or you want a fresh assessment. The analysis may take time to complete — use get-project-health afterward to see updated results. |
| `TODOIST_MCP_COMPLETE_TASKS` | Complete-tasks | Complete one or more tasks by their IDs. |
| `TODOIST_MCP_DELETE_OBJECT` | Delete-object | Delete a project, section, task, comment, label, filter, reminder, or location_reminder by its ID. Projects can be deleted whether active or archived (find archived ones via find-projects with archivedStatus); note a workspace project must be archived before it can be deleted, while personal projects can be deleted regardless. |
| `TODOIST_MCP_EXPORT_PROJECT_TEMPLATE` | Export-project-template | Export an existing project as a Todoist template, either as CSV content or as a shareable URL. Use it to duplicate a project, share its structure, or hand the CSV to import-project-template. To read a project rather than export it, use find-tasks instead — it returns structured tasks rather than raw CSV. Nothing is modified. |
| `TODOIST_MCP_FETCH` | Fetch | Fetch the full contents of a task or project by its ID. The ID should be in the format "task:{id}" or "project:{id}". |
| `TODOIST_MCP_FETCH_OBJECT` | Fetch-object | Fetch a single task, project, comment, or section by its ID. Use this when you have a specific object ID and want to retrieve its full details. Set includeChildren to also get its direct subtasks or sub-projects. |
| `TODOIST_MCP_FIND_ACTIVITY` | Find-activity | Retrieve activity logs to monitor and audit changes in Todoist. Shows events from all users by default (use initiatorId to filter by specific user). To answer what someone completed in a period, including recurring task occurrences, use objectType "task", eventType "completed", and dateFrom/dateTo. For a first-person question ("what did I get done"), also set initiatorId to the current user from user-info, or the answer includes collaborators' completions. Track task completions, updates, deletions, project changes, and more with flexible filtering. Activity history availability and retention depend on the user plan. |
| `TODOIST_MCP_FIND_COMMENTS` | Find-comments | Find comments by task, project, or get a specific comment by ID. Exactly one of taskId, projectId, or commentId must be provided. |
| `TODOIST_MCP_FIND_COMPLETED_TASKS` | Find-completed-tasks | Get completed tasks in a date range. For "what did I complete/get done" questions, use find-activity instead — it reports completion events, including every occurrence of a recurring task, which this tool does not. since/until are optional and default to a 7-day window when omitted. Includes all collaborators by default. Person-specific queries (summaries, plans, reports) require responsibleUser. |
| `TODOIST_MCP_FIND_FILTERS` | Find-filters | List all personal filters or search for filters by name. Filters are saved custom views that use query syntax to organize tasks (e.g. "today & p1", "#Work & overdue"). |
| `TODOIST_MCP_FIND_LABELS` | Find-labels | List personal labels and shared labels. Personal labels have full metadata (id, name, color, order, isFavorite) and support pagination and name search (partial, case insensitive). Shared labels are labels used on tasks shared with you — they are returned as names only (no IDs or metadata). When searching, all matching personal labels are fetched across all pages and returned as a single result set (limit and cursor are ignored). When not searching, personal labels are returned with pagination. |
| `TODOIST_MCP_FIND_PROJECT_COLLABORATORS` | Find-project-collaborators | Find Todoist users (collaborators, teammates) by name or email to look up their user ID. Use this whenever the user asks to find, look up, or identify a person — e.g. "find Carrie's user ID", "who is Ernesto", "look up a user". When projectId is omitted, searches across the collaborators of every shared project the authenticated user has access to, plus the authenticated user themselves — an empty result means the person is not a collaborator on any project you share with them, not necessarily that they do not exist in Todoist. When projectId is provided, searches only that project. Partial, case-insensitive match on name and email. |
| `TODOIST_MCP_FIND_PROJECTS` | Find-projects | List all projects or search for projects by name. By default only active projects are returned; use archivedStatus ('archived' or 'all') to include archived projects. When searching or when archivedStatus is 'all', all matching projects are returned (pagination is ignored). Otherwise projects are returned with pagination. |
| `TODOIST_MCP_FIND_REMINDERS` | Find-reminders | Find reminders by task ID (returns all reminder types), or get a specific reminder by its ID. Use reminderId for time-based reminders and locationReminderId for location reminders. |
| `TODOIST_MCP_FIND_SECTIONS` | Find-sections | Search for sections by name or other criteria in a project. When searching, uses server-side search to avoid fetching all sections. |
| `TODOIST_MCP_FIND_TASKS` | Find-tasks | Find tasks by text search, project/section/parent container, responsible user, labels, a raw Todoist filter string, or a saved filter by ID or name (filterIdOrName). At least one filter must be provided. |
| `TODOIST_MCP_FIND_TASKS_BY_DATE` | Find-tasks-by-date | Get tasks by date range. startDate='today' includes overdue items. Default responsibleUserFiltering='unassignedOrMe' excludes others' tasks. Person-specific queries (summaries, plans, reports) require responsibleUser. |
| `TODOIST_MCP_GET_OVERVIEW` | Get-overview | Get a Markdown overview. If no projectId is provided, shows all projects with hierarchy and sections (useful for navigation). If projectId is provided, shows detailed overview of that specific project including all tasks grouped by sections. |
| `TODOIST_MCP_GET_PRODUCTIVITY_STATS` | Get-productivity-stats | Get comprehensive productivity statistics including daily/weekly completion breakdowns, goal streaks (current, last, max), karma score and trends, and historical karma data. Useful for productivity analysis and tracking goal progress. Reports counts, streaks and karma only, never the tasks themselves — for "what did I complete", use find-activity. |
| `TODOIST_MCP_GET_PROJECT_ACTIVITY_STATS` | Get-project-activity-stats | Get daily and optional weekly task completion counts for a project over a configurable time window (1-12 weeks). Useful for identifying completion trends and patterns. |
| `TODOIST_MCP_GET_PROJECT_HEALTH` | Get-project-health | Get a comprehensive health assessment for a project including completion progress, health status (EXCELLENT, ON_TRACK, AT_RISK, CRITICAL), and optional detailed context with project metrics and task-level data. Use includeContext=true for that full detail. |
| `TODOIST_MCP_GET_WORKSPACE_INSIGHTS` | Get-workspace-insights | Get aggregated health and progress insights across all projects in a workspace. Accepts workspace name or ID, with optional project ID filtering. Useful for a cross-project health overview. |
| `TODOIST_MCP_IMPORT_PROJECT_TEMPLATE` | Import-project-template | Import a template into an existing project, adding its tasks, sections and comments to whatever is already there. Source it by template ID/URL or by passing CSV content from export-project-template. To start a new project from a template, create the project with add-projects first, then import into it. This writes immediately and cannot be undone, so only run it against a project the user named. |
| `TODOIST_MCP_LIST_WORKSPACES` | List-workspaces | Get all workspaces for the authenticated user. Returns workspace details including ID, name, plan type (STARTER/BUSINESS), user role (ADMIN/MEMBER/GUEST), link sharing settings, guest permissions, creation date, and creator ID. |
| `TODOIST_MCP_MANAGE_ASSIGNMENTS` | Manage-assignments | Bulk assignment operations for multiple tasks. Supports assign, unassign, and reassign operations with atomic rollback on failures. |
| `TODOIST_MCP_PROJECT_MANAGEMENT` | Project-management | Archive or unarchive a project by its ID. |
| `TODOIST_MCP_PROJECT_MOVE` | Project-move | Move a project between personal and workspace contexts. |
| `TODOIST_MCP_REORDER_OBJECTS` | Reorder-objects | Reorder sibling projects or sections, and optionally move projects to a new parent. For projects: set order to reorder siblings, and/or set parentId to move under a new parent (use "root" for top level). For sections: set order to reorder within a project. |
| `TODOIST_MCP_RESCHEDULE_TASKS` | Reschedule-tasks | Reschedule tasks to new dates while preserving recurring schedules. Unlike update-tasks (which replaces the entire due string and can wipe recurrence), this tool changes only the date, keeping recurrence patterns intact. Use this when moving recurring tasks to a different date without altering their repeat pattern. |
| `TODOIST_MCP_SEARCH` | Search | Search across tasks and projects in Todoist. Returns a list of relevant results with IDs, titles, and URLs. |
| `TODOIST_MCP_UNCOMPLETE_TASKS` | Uncomplete-tasks | Uncomplete (reopen) one or more completed tasks by their IDs. |
| `TODOIST_MCP_UPDATE_COMMENTS` | Update-comments | Update multiple existing comments with new content. |
| `TODOIST_MCP_UPDATE_FILTERS` | Update-filters | Update one or more existing personal filters with new values. |
| `TODOIST_MCP_UPDATE_LABELS` | Update-labels | Update one or more existing labels. Personal labels (identified by ID) can have their name, color, order, and favorite flag updated. Shared labels (identified by name) can only be renamed. |
| `TODOIST_MCP_UPDATE_PROJECTS` | Update-projects | Update multiple existing projects with new values. |
| `TODOIST_MCP_UPDATE_REMINDERS` | Update-reminders | Update existing reminders. Each reminder must specify its type ("relative", "absolute", or "location") and ID. Only include fields that need to change. |
| `TODOIST_MCP_UPDATE_SECTIONS` | Update-sections | Update multiple existing sections with new values. |
| `TODOIST_MCP_UPDATE_TASKS` | Update-tasks | Update existing tasks including content, dates, priorities, and assignments. Send only the fields that change. |
| `TODOIST_MCP_USER_INFO` | User-info | Get comprehensive user information including user ID, full name, email, timezone with current local time, week start day preferences, current week dates, daily/weekly goal progress, and user plan (Free/Pro/Business). |
| `TODOIST_MCP_VIEW_ATTACHMENT` | View-attachment | View a file attachment from a Todoist comment. Pass the fileUrl from a comment's fileAttachment field. Supports images (returned inline), text files (returned as text), and binary files like PDFs (returned as embedded resources). |

## Supported Triggers

None listed.

## Troubleshooting

### 1. Why does Claude not use the Composio connector for Todoist?

The connector can show as connected, but Claude must use it in each Todoist conversation.
- Click + at the lower left of the chat, or type /.
- Hover Connectors.
- Turn on Composio.
- Ask Claude to connect to Todoist again.

### 2. Why does Claude show an MCP server error before Todoist connects?

Claude can show Couldn't reach the MCP server or Authorization with the MCP server failed when you add the connector for Todoist.
- Check that the connector URL is https://connect.composio.dev/mcp.
- Connectors run from Anthropic's cloud, so your device network is usually not the problem.
- Add the connector again from Customize > Connectors, then ask Claude to connect Todoist.
- If it fails again, send the error and the ofid_ reference id to support@composio.dev.

### 3. Why does the Todoist authorization link not work?

The Composio connector is one server. Your Todoist account connects separately when Claude asks for it.
- If the browser does not open, or the link expires, ask Claude to retry the Todoist connection.
- Composio creates a fresh Todoist authorization link.
- Open that link in your browser and finish the Todoist sign-in.

### 4. Why do Todoist actions fail after they worked before?

The Todoist connection can expire or lose permission.
- Ask Claude to inspect the Todoist connection.
- If the connection is unhealthy, disconnect it when Claude prompts you.
- Reconnect the Todoist account and retry the action.
- If Claude shows a permission prompt, approve it before Claude changes data in Todoist.
- If the action still fails with a permission error, check that the connected account has that permission in Todoist itself.

### 5. How do I switch to a different Todoist account?

Claude can manage the Todoist connection for you.
- Ask Claude to disconnect or delete the current Todoist account.
- Ask Claude to connect Todoist again.
- Open the new Composio authorization link for Todoist.
- Sign in with the other Todoist account in the browser.
- After the account connects, ask Claude to retry the Todoist task.

### 6. Why is my Todoist connection missing in Claude Desktop or on a Team plan?

The connector belongs to your Claude account, so your Todoist connection works in Claude Web, Desktop, and Cowork.
- In Claude Desktop, open Customize > Connectors.
- Next to Composio, click ⋮ and click Clear cache.
- If Todoist tools still do not appear, click ⋮, disconnect, remove the connector, and add it again.
- On Team or Enterprise, an Owner or Primary Owner must enable the connector before you can connect Todoist.

## Creating MCP Server - Stand-alone vs Composio SDK

The Todoist MCP server connects Claude Web, Desktop, and Cowork to your Todoist account through Composio. Once connected, Claude can use the available Todoist tools and triggers to complete tasks on your behalf.

## Complete Code

None listed.

## How to build Todoist MCP Agent with another framework

- [ChatGPT Work](https://composio.dev/toolkits/todoist_mcp/framework/chatgpt)
- [Hermes](https://composio.dev/toolkits/todoist_mcp/framework/hermes-agent)

## Related Toolkits

- [Google Sheets](https://composio.dev/toolkits/googlesheets) - Google Sheets is a cloud-based spreadsheet tool for real-time collaboration and data analysis. It lets teams work together from anywhere, updating information instantly.
- [Notion](https://composio.dev/toolkits/notion) - Notion is a collaborative workspace for notes, docs, wikis, and tasks. It streamlines team knowledge, project tracking, and workflow customization in one place.
- [Airtable](https://composio.dev/toolkits/airtable) - Airtable combines the flexibility of spreadsheets with the power of a database for easy project and data management. Teams use Airtable to organize, track, and collaborate with custom views and automations.
- [Asana](https://composio.dev/toolkits/asana) - Asana is a collaborative work management platform for teams to organize and track projects. It streamlines teamwork, boosts productivity, and keeps everyone aligned on goals.
- [Google Tasks](https://composio.dev/toolkits/googletasks) - Google Tasks is a to-do list and task management tool integrated into Gmail and Google Calendar. It helps you organize, track, and complete tasks across your Google ecosystem.
- [Linear](https://composio.dev/toolkits/linear) - Linear is a modern issue tracking and project planning tool for fast-moving teams. It helps streamline workflows, organize projects, and boost productivity.
- [Jira](https://composio.dev/toolkits/jira) - Jira is Atlassian’s platform for bug tracking, issue tracking, and agile project management. It helps teams organize work, prioritize tasks, and deliver projects efficiently.
- [Clickup](https://composio.dev/toolkits/clickup) - ClickUp is an all-in-one productivity platform for managing tasks, docs, goals, and team collaboration. It streamlines project workflows so teams can work smarter and stay organized in one place.
- [Monday](https://composio.dev/toolkits/monday) - Monday.com is a customizable work management platform for project planning and collaboration. It helps teams organize tasks, automate workflows, and track progress in real time.
- [Addressfinder](https://composio.dev/toolkits/addressfinder) - Addressfinder is a data quality platform for verifying addresses, emails, and phone numbers. It helps you ensure accurate customer and contact data every time.
- [Agiled](https://composio.dev/toolkits/agiled) - Agiled is an all-in-one business management platform for CRM, projects, and finance. It helps you streamline workflows, consolidate client data, and manage business processes in one place.
- [Amazing Marvin](https://composio.dev/toolkits/amazing_marvin) - Amazing Marvin is a personal productivity app for tasks, projects, habits, planning, time tracking, and rewards. It helps you build a flexible workflow that matches how you actually work.
- [AnyDB](https://composio.dev/toolkits/any_db) - AnyDB is a flexible collaborative database platform for organizing records, files, and automated workflows. It helps teams centralize data, collaborate on records, and automate routine tasks.
- [ApptiveGrid](https://composio.dev/toolkits/apptivegrid) - ApptiveGrid is a collaborative no-code database and app platform for spaces, grids, forms, and structured records. It helps teams organize operational data, collect inputs, and build lightweight business apps without custom backend work.
- [Ascora](https://composio.dev/toolkits/ascora) - Ascora is a cloud-based field service management platform for service businesses. It streamlines scheduling, invoicing, and customer operations in one place.
- [Basecamp](https://composio.dev/toolkits/basecamp) - Basecamp is a project management and team collaboration tool by 37signals. It helps teams organize tasks, share files, and communicate efficiently in one place.
- [Beeminder](https://composio.dev/toolkits/beeminder) - Beeminder is an online goal-tracking platform that uses monetary pledges to keep you motivated. Stay accountable and hit your targets with real financial incentives.
- [Boxhero](https://composio.dev/toolkits/boxhero) - Boxhero is a cloud-based inventory management platform for SMBs, offering real-time updates, barcode scanning, and team collaboration. It helps businesses streamline stock tracking and analytics for smarter inventory decisions.
- [Breathe HR](https://composio.dev/toolkits/breathehr) - Breathe HR is cloud-based HR software for SMEs to manage employee data, absences, and performance. It simplifies HR admin, making it easy to keep employee records accurate and up to date.
- [Breeze](https://composio.dev/toolkits/breeze) - Breeze is a project management platform designed to help teams plan, track, and collaborate on projects. It streamlines workflows and keeps everyone on the same page.

## Frequently Asked Questions

### What are the differences in Tool Router MCP and Todoist MCP?

With a standalone Todoist MCP server, the agents and LLMs can only access a fixed set of Todoist tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Todoist and many other apps based on the task at hand, all through a single MCP endpoint.

### Can I use Tool Router MCP with Claude Cowork?

Yes, you can. Claude Cowork fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Todoist tools.

### Can I manage the permissions and scopes for Todoist while using Tool Router?

Yes, absolutely. You can configure which Todoist scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

### How safe is my data with Composio Tool Router?

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Todoist data and credentials are handled as safely as possible.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
