Todoist MCP Server
Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
TODOIST_API_TOKEN | Yes | Your Todoist API token |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
todoist_create_task | Create a new task in Todoist with optional description, due date, and priority |
todoist_get_tasks | Get a list of tasks from Todoist with various filters |
todoist_update_task | Update an existing task in Todoist by searching for it by name and then updating it |
todoist_delete_task | Delete a task from Todoist by searching for it by name |
todoist_complete_task | Mark a task as complete by searching for it by name |
todoist_get_projects | Get all projects from Todoist |
todoist_create_project | Create a new project in Todoist |
todoist_update_project | Update an existing project in Todoist |
todoist_get_project_sections | Get all sections in a Todoist project |
todoist_create_section | Create a new section in a Todoist project |
todoist_move_task | Move a task to a different section and/or project |
todoist_get_personal_labels | Get all personal labels from Todoist |
todoist_create_personal_label | Create a new personal label in Todoist |
todoist_get_personal_label | Get a personal label by ID |
todoist_update_personal_label | Update an existing personal label in Todoist |
todoist_delete_personal_label | Delete a personal label from Todoist |
todoist_update_task_labels | Update the labels of a task in Todoist |