Todoist MCP Python MCP Server

A Model Context Protocol (MCP) server that allows clients like Claude to interact with Todoist, enabling task management capabilities through natural

Local serverstdioPython

What is the Todoist MCP Python MCP server?

If you already use Todoist MCP Python, the todoist mcp python mcp server is the piece that lets your assistant work with it directly. A Model Context Protocol (MCP) server that allows clients like Claude to interact with Todoist, enabling task management capabilities through natural language. The server acts as an intermediary between clients and the Todoist API.

What the server does

  • Task Creation — Create new tasks with required content and optional attributes
  • Task Retrieval — Get task by ID or list tasks with filtering options
  • Task Management — Update task attributes, mark tasks as complete, delete tasks

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Required — content (title of the task)
  • Optional — - description,

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Credentials and setup notes

Configuration is passed through the environment: TODOIST_API_TOKEN, YOUR_API_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Python 3.12 - uv - A Todoist account and API token

Where it fits

Among the planning and project tracking options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Todoist MCP Python's toolset — Required, Optional — is a fair guide to whether it matches your workflow. It is maintained by Johnxjp; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Requiredcontent (title of the task)
Optional- description,

How to install the Todoist MCP Python MCP server

Then add to your Claude config file:
```
{
  "mcpServers": {
    "todoist-server": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "mcp[cli]",
        "--with",
        "todoist_api_python",
        "mcp",
        "run",
        "/full/path/to/todoist_server.py"
      ],
      "env": {
        "TODOIST_API_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.12 - uv - A Todoist account and API token
VariableDescriptionRequired
TODOIST_API_TOKENCredential the server authenticates with.Yes
YOUR_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Todoist MCP Python to Required.
  • Use Todoist MCP Python to Optional.

Frequently asked questions

It connects Todoist MCP Python to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Required, Optional) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Todoist MCP Python directly.