AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Todoist Mcp Python

mcp-johnxjp-todoist-mcp-python · by Johnxjp

MCP Server for Todoist in Python

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add mcp-johnxjp-todoist-mcp-python

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-johnxjp-todoist-mcp-python)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Todoist Mcp Python? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Todoist MCP Server

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, handling authentication, data transformation, and command processing. This is a Python version

Features

  • 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

Prerequisites

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

How to get Todoist API Token

  1. Login to your Todoist account
  2. Go to User Settings -> Integrations -> Developer
  3. Copy API token

Usage with Claude Desktop

Run via UVX (without cloning)

You can run the server directly from GitHub using UVX:

uvx --from https://github.com/Johnxjp/todoist-mcp-python.git mcp-server-todoist

Then add this configuration to your Claude settings:

{
  "mcpServers": {
    "todoist-server": {
      "command": "uvx",
      "args": [
        "--from", 
        "https://github.com/Johnxjp/todoist-mcp-python.git", 
        "mcp-server-todoist"
      ],
      "env": {
        "TODOIST_API_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}

Run from cloned repository

If you prefer to clone the repository, use these commands:

git clone git@github.com:Johnxjp/todoist-mcp-python.git

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"
      }
    }
  }
}

Available Tools

The server provides the following tools for Claude to use:

  1. create_task: Create a new task in Todoist
  • Required: content (title of the task)
  • Optional:
  • description,
  • due_date,
  • priority,
  • project_id,
  • section_id,
  • labels
  1. get_tasks: Get a list of tasks and Ids from Todoist with various filters
  • Optional:
  • project_id,
  • project_name,
  • task_name,
  • priority,
  • labels,
  • is_overdue,
  • limit
  1. update_task: Update an existing task by searching for it by name
  • Required: task_id
  • Optional:
  • content,
  • description,
  • labels,
  • priority,
  • due_date (YYYY-MM-DD),
  • deadline_date (YYYY-MM-DD)
  1. delete_task: Delete a task by searching for it by name
  • Required: task_id
  1. complete_task: Mark a task as complete by searching for it by name
  • Required: task_id

Example Interactions

Here are some examples of how Claude can interact with Todoist through this MCP server:

  • "Add a task to buy groceries"
  • "Show me all my urgent tasks"
  • "What tasks are due today?"
  • "Mark the laundry task as done"
  • "Change the priority of my dentist appointment to urgent"

Security Considerations

  • The server securely handles your Todoist API token through environment variables
  • Never share your .env file or expose your API token
  • The server runs locally and communicates only with the Todoist API

License

[MIT License](LICENSE)

Acknowledgements

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.