Skip to main content
Glama

Todoist MCP Server

by mikemc

Servidor MCP de Todoist (Python)

Un servidor MCP de Todoist escrito en Python, usando la API de Python de Todoist . Creé el servidor usando Claude para traducir este servidor MCP de TypeScript a Python. Estoy modificando y añadiendo funcionalidades gradualmente para adaptarme a mi flujo de trabajo mientras experimento con Claude para facilitar la gestión de tareas.

Instalación

Prerrequisitos

Obtener un token de API de Todoist

  1. Inicia sesión en tu cuenta de Todoist
  2. Vaya a Configuración → Integraciones
  3. Encuentra tu token de API en "Desarrollador"

Configuración con Claude Desktop

Agregue el servidor MCP a su 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" } } } }

O bien, para ejecutar desde una copia local,

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

Herramientas disponibles

Para ver las herramientas disponibles actualmente, ejecute

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

A partir del 26 de mayo de 2025,

  • Proyectos
    • todoist_get_projects
    • todoist_get_project
    • todoist_add_project
    • todoist_update_project
    • todoist_delete_project
  • Secciones
    • todoist_get_sections
    • todoist_get_section
    • todoist_add_section
    • todoist_update_section
    • todoist_delete_section
  • Tareas
    • 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
  • Comentarios
    • todoist_get_comment
    • todoist_get_comments
    • todoist_add_comment
    • todoist_update_comment
    • todoist_delete_comment

Licencia

Este proyecto está licenciado bajo la Licencia MIT. Consulte el archivo de LICENCIA para más detalles.

Install Server
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.

Un servidor Python que permite a Claude interactuar con la API de gestión de tareas de Todoist, permitiendo a los usuarios crear, gestionar y organizar tareas directamente a través de la interfaz de Claude.

  1. Instalación
    1. Prerrequisitos
    2. Obtener un token de API de Todoist
    3. Configuración con Claude Desktop
  2. Herramientas disponibles
    1. Licencia

      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
        F
        license
        -
        quality
        A Model Context Protocol server that enables Claude to interact with your Todoist account, allowing you to manage tasks, projects, and labels through natural language.
        Last updated -
        1
        Python
      • -
        security
        -
        license
        -
        quality
        A Model Context Protocol server that enables advanced task and project management in Todoist via Claude Desktop and other MCP-compatible clients.
        Last updated -
        JavaScript
        MIT License

      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