Skip to main content
Glama

Todoist MCP Server

by mikemc

MCP-сервер Todoist (Python)

Сервер Todoist MCP, написанный на Python, использующий API Todoist Python . Сначала я создал сервер, используя Claude для перевода этого сервера TypeScript Todoist MCP на Python. Я постепенно меняю и добавляю функционал в соответствии со своим рабочим процессом, экспериментируя с использованием Claude для помощи в управлении задачами.

Установка

Предпосылки

Получение токена API Todoist

  1. Войдите в свою учетную запись Todoist
  2. Перейдите в Настройки → Интеграции.
  3. Найдите свой API-токен в разделе «Разработчик».

Конфигурация с Claude Desktop

Добавьте сервер MCP в ваш claude_desktop_config.json,

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

Или, чтобы запустить из локальной копии,

{ "mcpServers": { "todoist": { "command": "uvx", "args": [ "--from", "/absolute/path/to/todoist-mcp-server", "todoist-mcp" ], "env": { "TODOIST_API_TOKEN": "your_todoist_api_token" } } } }

Доступные инструменты

Чтобы увидеть доступные в настоящее время инструменты, запустите

# With GNU grep installed as ggrep (as with `brew install grep` on Mac) ggrep -Po '(?<=^mcp.tool\(\)\()([^)]+)' src/main.py

По состоянию на 26.05.2025 г.

  • Проекты
    • todoist_get_projects
    • todoist_get_project
    • todoist_add_project
    • todoist_update_project
    • todoist_delete_project
  • Разделы
    • todoist_get_sections
    • todoist_get_section
    • todoist_add_section
    • todoist_update_section
    • todoist_delete_section
  • Задачи
    • todoist_get_task
    • todoist_get_tasks
    • todoist_filter_tasks
    • todoist_add_task
    • todoist_update_task
    • todoist_complete_task
    • todoist_uncomplete_task
    • todoist_move_task
    • todoist_delete_task
  • Комментарии
    • todoist_get_comment
    • todoist_get_comments
    • todoist_add_comment
    • todoist_update_comment
    • todoist_delete_comment

Лицензия

Этот проект лицензирован по лицензии MIT. Подробности см. в файле LICENSE .

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Сервер Python, который позволяет Клоду взаимодействовать с API управления задачами Todoist, позволяя пользователям создавать, управлять и организовывать задачи непосредственно через интерфейс Клода.

  1. Установка
    1. Предпосылки
    2. Получение токена API Todoist
    3. Конфигурация с Claude Desktop
  2. Доступные инструменты
    1. Лицензия

      Related MCP Servers

      • A
        security
        A
        license
        A
        quality
        Integrates Claude with Todoist for natural language task management, supporting project and section organization, task creation, updating, completion, and deletion using everyday language.
        Last updated -
        19
        35
        12
        JavaScript
        MIT License
      • A
        security
        A
        license
        A
        quality
        An MCP server that integrates Claude with Todoist, enabling natural language task management including creating, updating, completing, and deleting tasks.
        Last updated -
        5
        245
        153
        JavaScript
        MIT License
      • -
        security
        A
        license
        -
        quality
        A Model Context Protocol server that integrates with Notion's API to manage personal todo lists, allowing users to view, add, and update tasks directly from Claude.
        Last updated -
        13
        Python
        MIT License
      • A
        security
        F
        license
        A
        quality
        A server that enables Claude Desktop users to access the Claude API directly, allowing them to bypass Professional Plan limitations and use advanced features like custom system prompts and conversation management.
        Last updated -
        1
        5
        Python
        • Apple

      View all related MCP servers

      MCP directory API

      We provide all the information about MCP servers via our MCP API.

      curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikemc/todoist-mcp-server'

      If you have feedback or need assistance with the MCP directory API, please join our Discord server