Aerostack
electrical_services

Todoist MCP Server — Hosted Api Connectors Integration

MCP Server language Hosted language Public

Manage tasks, projects, and sections in Todoist — AI-powered task management for individuals and teams.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "todoist": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-todoist",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

+17 more

Natural Language Prompt

“Use the _ping tool to verify todoist credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

mcp-todoist — Todoist MCP Server

Manage tasks, projects, sections, labels, and comments in Todoist from any AI agent — full access to the Todoist REST API v2.

Todoist is the world's most popular task manager, trusted by over 40 million people. This MCP server gives your AI agents complete control over Todoist: creating and completing tasks, organizing projects and sections, managing labels, and leaving comments — all through natural language.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-todoist


What You Can Do

  • Create tasks from any trigger — emails, Slack messages, form submissions, or AI analysis
  • Close and reopen tasks, set due dates using natural language like "next Monday at 9am"
  • Organize work by creating projects, sections, and labels programmatically
  • List overdue tasks, today's priorities, or filter by any Todoist filter expression
  • Add comments to tasks for audit trails and handoff notes

Available Tools

Tool Description
list_tasks List active tasks with optional filters: project, section, label, or Todoist filter strings
get_task Get a specific task by ID
create_task Create a task with content, due date, priority, labels, and parent
update_task Update task content, due date, labels, or priority
close_task Mark a task as completed
delete_task Permanently delete a task
list_projects List all projects
get_project Get a specific project by ID
create_project Create a project with color, view style, and favorite flag
update_project Update project name, color, view style, or favorite status
delete_project Delete a project and all its tasks
list_sections List sections in a project
get_section Get a section by ID
create_section Create a section in a project
delete_section Delete a section (tasks move to project root)
list_comments List comments on a task or project
create_comment Add a comment to a task or project
list_labels List all personal labels
create_label Create a personal label
get_user Get current user profile
reopen_task Reopen a completed task
move_task Move a task to a different project or section

Configuration

Variable Required Description How to Get
TODOIST_API_TOKEN Yes Personal API token for authentication Todoist → Settings → Integrations → Developer → API token

Personal API tokens never expire and provide full access to the account's data.

Quick Start

Add to Aerostack Workspace
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Todoist" and click Add to Workspace
  3. Add your TODOIST_API_TOKEN under Project → Secrets

Once added, every AI agent in your workspace can manage tasks automatically.

Example Prompts
"Create a task to review the Q1 report due next Friday with high priority"
"List all overdue tasks and close any that are already done"
"Create a new project called 'Product Launch' with board view and add three sections: Ideas, In Progress, Done"
"Move all tasks labeled 'urgent' to the top of my Inbox"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-todoist \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-TODOIST-API-TOKEN: your-api-token' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_tasks","arguments":{"filter":"overdue"}}}'
Filter Syntax Examples

Todoist supports a powerful filter language for list_tasks:

Filter Returns
today Tasks due today
overdue All overdue tasks
p1 Priority 1 (urgent) tasks
#Work Tasks in "Work" project
@shopping Tasks with "shopping" label
assigned to: me Tasks assigned to you
due before: +7 days Tasks due in the next 7 days

Rate Limits

Todoist allows 1,000 API requests per 15-minute window. For high-volume automations, batch operations where possible and use filters to reduce the number of calls needed.

License

MIT

terminal Tools (23)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
_ping #1

Verify Todoist credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.

terminal
list_tasks #2

List active tasks. Filter by project, section, label, or use Todoist filter strings like "today", "overdue", "p1", or "#MyProject".

terminal
get_task #3

Get a specific task by ID. Returns content, description, project_id, section_id, parent_id, labels, priority, due date, and URL.

terminal
create_task #4

Create a new task. Content is required. Supports natural language due dates like "tomorrow at 5pm" or ISO dates like "2026-12-31".

terminal
update_task #5

Update an existing task. Provide only the fields to change.

terminal
close_task #6

Mark a task as completed. For recurring tasks, this moves the due date to the next occurrence.

terminal
delete_task #7

Permanently delete a task. This action cannot be undone.

terminal
list_projects #8

List all user projects. Returns id, name, color, is_favorite, parent_id, and order for each project.

terminal
get_project #9

Get a specific project by ID. Returns name, color, comment_count, order, is_favorite, is_inbox_project, and is_team_inbox.

terminal
create_project #10

Create a new project. Name is required.

terminal
update_project #11

Update project name, color, favorite status, or view style.

terminal
delete_project #12

Delete a project and all tasks within it. This action cannot be undone.

terminal
list_sections #13

List all sections in a project.

terminal
get_section #14

Get a specific section by ID.

terminal
create_section #15

Create a new section in a project.

terminal
delete_section #16

Delete a section. Tasks within the section are moved to the project root.

terminal
list_comments #17

List all comments on a task or project. Provide either task_id or project_id.

terminal
create_comment #18

Create a comment on a task or project. Content is required, plus either task_id or project_id.

terminal
list_labels #19

List all personal labels. Returns name, color, order, and is_favorite for each label.

terminal
create_label #20

Create a new personal label.

terminal
get_user #21

Get the current user profile. Returns email, full_name, premium status, timezone, and week start day.

terminal
reopen_task #22

Reopen a previously completed task, making it active again.

terminal
move_task #23

Move a task to a different project or section.

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category API Connectors
terminal Tools 23

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-todoist

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in API Connectors

Browse API Connectors MCPs →

Frequently asked questions

What is the Todoist MCP server and what can it do? +

The Todoist MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_tasks`, `get_task`, `create_task`, `update_task`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Todoist MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Todoist MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Todoist MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Todoist MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-todoist": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-todoist"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Todoist MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-todoist", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-todoist"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Todoist MCP require authentication? +

Yes. Todoist requires authentication. Check the MCP's documentation for the required credentials.