# Todoist MCP

```json
{
  "name": "Todoist MCP",
  "slug": "todoist_mcp",
  "url": "https://composio.dev/toolkits/todoist_mcp",
  "markdown_url": "https://composio.dev/toolkits/todoist_mcp.md",
  "logo_url": "https://logos.composio.dev/api/todoist_mcp",
  "categories": [
    "productivity & project management"
  ],
  "is_composio_managed": false,
  "updated_at": "2026-09-07T05:40:29.843Z"
}
```

![Todoist MCP logo](https://logos.composio.dev/api/todoist_mcp)

## Description

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Todoist MCP or direct API to read tasks, create and update tasks, organize projects, and complete tasks through natural language.

## Summary

Todoist MCP is a hosted Streamable HTTP server for Todoist that exposes task and project operations.
Use it to let AI agents integrate with Todoist without writing bespoke integration code.

## Categories

- productivity & project management

## Toolkit Details

- Tools: 47

## Images

- Logo: https://logos.composio.dev/api/todoist_mcp

## Authentication

- **Dcr Oauth**
  - Type: `custom`
  - Description: Dcr Oauth authentication for Todoist MCP.
  - Setup:
    - Configure Dcr Oauth credentials for Todoist MCP.
    - Use the credentials when creating an auth config in Composio.

## Suggested Prompts

- Create project Q3 roadmap and tasks
- List all overdue tasks assigned to me
- Complete today's high priority tasks in Inbox

## 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.

## Installation and MCP Setup

### Path 1: SDK Installation

#### Path 1, Step 1: Install Composio

Install the Composio SDK
```python
pip install composio_openai
```

```typescript
npm install @composio/openai
```

#### Path 1, Step 2: Initialize Composio and Create Tool Router Session

Import and initialize Composio client, then create a Tool Router session
```python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
```

```typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
```

#### Path 1, Step 3: Execute Todoist MCP Tools via Tool Router with Your Agent

Get tools from Tool Router session and execute Todoist MCP actions with your Agent
```python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'YOUR_SPECIFIC_PROMPT_HERE'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
```

```typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
```

### Path 2: MCP Server Setup

#### Path 2, Step 1: Install Composio

Install the Composio SDK for Python or TypeScript
```python
pip install composio claude-agent-sdk
```

```typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
```

#### Path 2, Step 2: Initialize Client and Create Tool Router Session

Import and initialize the Composio client, then create a Tool Router session for Todoist MCP
```python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
```

```typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
```

#### Path 2, Step 3: Connect to AI Agent

Use the MCP server with your AI agent (Anthropic Claude or Mastra)
```python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Todoist MCP tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('YOUR_SPECIFIC_PROMPT_HERE')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
```

```typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
```

## Why Use Composio?

### 1. AI Native Todoist MCP Integration

- Supports both Todoist MCP and direct API based integrations
- Structured, LLM-friendly schemas for reliable tool execution
- Rich coverage for reading, writing, and querying your Todoist MCP data

### 2. Managed Auth

- Built-in OAuth handling with automatic token refresh and rotation
- Central place to manage, scope, and revoke Todoist MCP access
- Per user and per environment credentials instead of hard-coded keys

### 3. Agent Optimized Design

- Tools are tuned using real error and success rates to improve reliability over time
- Comprehensive execution logs so you always know what ran, when, and on whose behalf

### 4. Enterprise Grade Security

- Fine-grained RBAC so you control which agents and users can access Todoist MCP
- Scoped, least privilege access to Todoist MCP resources
- Full audit trail of agent actions to support review and compliance

## Use Todoist MCP with any AI Agent Framework

Choose a framework you want to connect Todoist MCP with:

- [ChatGPT Work](https://composio.dev/toolkits/todoist_mcp/framework/chatgpt)
- [Claude Cowork](https://composio.dev/toolkits/todoist_mcp/framework/claude-cowork)
- [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

### Do I need my own developer credentials to use Todoist MCP with Composio?

Yes, Todoist MCP requires you to configure your own Dcr Oauth credentials. Once set up, Composio handles secure credential storage and management for you.

### Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. [Learn more](https://docs.composio.dev/tool-router/overview).

### Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. [Learn more](https://trust.composio.dev).

### What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

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