Todoist MCP for AI Agents

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.

Todoist MCP logoTodoist MCP
Dcr Oauth

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.

47 Tools

Try Todoist MCP now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Todoist MCP
Try asking
TOOLS

Supported Tools

Every Todoist MCP action and event your agent gets out of the box.

Add-comments

Add multiple comments to tasks or projects, optionally notifying collaborators.

Add-filters

Add one or more new personal filters.

Add-labels

Add one or more new personal labels.

Add-projects

Add one or more new projects.

Add-reminders

Add reminders to tasks.

Add-sections

Add one or more new sections to projects.

Add-tasks

Add one or more tasks to a project, section, or parent.

Analyze-project-health

Trigger a new health analysis for a project.

Complete-tasks

Complete one or more tasks by their IDs.

Delete-object

Delete a project, section, task, comment, label, filter, reminder, or location_reminder by its ID.

Export-project-template

Export an existing project as a Todoist template, either as CSV content or as a shareable URL.

Fetch

Fetch the full contents of a task or project by its ID.

Fetch-object

Fetch a single task, project, comment, or section by its ID.

Find-activity

Retrieve activity logs to monitor and audit changes in Todoist.

Find-comments

Find comments by task, project, or get a specific comment by ID.

Find-completed-tasks

Get completed tasks in a date range.

Find-filters

List all personal filters or search for filters by name.

Find-labels

List personal labels and shared labels.

Find-project-collaborators

Find Todoist users (collaborators, teammates) by name or email to look up their user ID.

Find-projects

List all projects or search for projects by name.

Find-reminders

Find reminders by task ID (returns all reminder types), or get a specific reminder by its ID.

Find-sections

Search for sections by name or other criteria in a project.

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

Find-tasks-by-date

Get tasks by date range.

Get-overview

Get a Markdown overview.

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.

Get-project-activity-stats

Get daily and optional weekly task completion counts for a project over a configurable time window (1-12 weeks).

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.

Get-workspace-insights

Get aggregated health and progress insights across all projects in a workspace.

Import-project-template

Import a template into an existing project, adding its tasks, sections and comments to whatever is already there.

List-workspaces

Get all workspaces for the authenticated user.

Manage-assignments

Bulk assignment operations for multiple tasks.

Project-management

Archive or unarchive a project by its ID.

Project-move

Move a project between personal and workspace contexts.

Reorder-objects

Reorder sibling projects or sections, and optionally move projects to a new parent.

Reschedule-tasks

Reschedule tasks to new dates while preserving recurring schedules.

Search

Search across tasks and projects in Todoist.

Uncomplete-tasks

Uncomplete (reopen) one or more completed tasks by their IDs.

Update-comments

Update multiple existing comments with new content.

Update-filters

Update one or more existing personal filters with new values.

Update-labels

Update one or more existing labels.

Update-projects

Update multiple existing projects with new values.

Update-reminders

Update existing reminders.

Update-sections

Update multiple existing sections with new values.

Update-tasks

Update existing tasks including content, dates, priorities, and assignments.

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

View-attachment

View a file attachment from a Todoist comment.

SETUP GUIDE

Connect Todoist MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

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}`);
Import and initialize the Composio client, then create a Tool Router session for Todoist MCP
3

Connect to AI Agent

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}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Todoist MCP API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

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');
Import and initialize Composio client, then create a Tool Router session
3

Execute Todoist MCP Tools via Tool Router with Your Agent

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);
Get tools from Tool Router session and execute Todoist MCP actions with your Agent

Why Use Composio?

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

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

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

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
FRAMEWORKS

Use Todoist MCP with any AI Agent Framework

Choose a Framework you want to connect Todoist MCP with

FAQ

Frequently asked questions

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

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

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

Start with Todoist MCP.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Todoist MCP tool your agent needs.Free to start.

Start building