Todoist MCP Server Extended
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TODOIST_API_TOKEN | Yes | Your Todoist API token, found in Settings → Integrations → Developer |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| todoist_create_taskC | Create one or more tasks in Todoist with full parameter support |
| todoist_get_tasksC | Get a list of tasks from Todoist with various filters - handles both single and batch retrieval |
| todoist_update_taskC | Update one or more tasks in Todoist with full parameter support |
| todoist_delete_taskC | Delete one or more tasks from Todoist |
| todoist_complete_taskC | Mark one or more tasks as complete in Todoist |
| todoist_get_projectsC | Get projects with optional filtering and hierarchy information |
| todoist_create_projectC | Create one or more projects with support for nested hierarchies |
| todoist_update_projectC | Update one or more projects in Todoist |
| todoist_get_project_sectionsC | Get sections from one or more projects in Todoist |
| todoist_create_project_sectionC | Create one or more sections in Todoist projects |
| todoist_get_personal_labelsB | Get all personal labels from Todoist |
| todoist_create_personal_labelC | Create one or more personal labels in Todoist |
| todoist_get_personal_labelB | Get a personal label by ID |
| todoist_update_personal_labelC | Update one or more existing personal labels in Todoist |
| todoist_delete_personal_labelC | Delete a personal label from Todoist |
| todoist_get_shared_labelsC | Get all shared labels from Todoist |
| todoist_rename_shared_labelsC | Rename one or more shared labels in Todoist |
| todoist_remove_shared_labelsC | Remove one or more shared labels from Todoist tasks |
| todoist_update_task_labelsC | Update the labels of one or more tasks in Todoist |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 19 tools
Every tool has a clearly distinct purpose targeting specific resources (tasks, projects, labels, sections) and actions (create, get, update, delete, complete, rename, remove). There is no ambiguity or overlap; for example, todoist_update_task and todoist_update_task_labels are clearly separated for different update operations.
All tools follow a consistent verb_noun pattern with the prefix 'todoist_' and snake_case throughout. The naming is predictable and readable, such as todoist_create_task, todoist_get_projects, and todoist_update_personal_label, with no deviations in style.
With 19 tools, the count is slightly high but reasonable for a comprehensive Todoist integration covering tasks, projects, labels, and sections. It feels well-scoped for the domain, though it borders on being heavy; each tool earns its place by addressing specific operations without redundancy.
The tool set provides complete CRUD/lifecycle coverage for Todoist's core domain: tasks (create, get, update, delete, complete), projects (create, get, update), labels (personal and shared with create, get, update, delete, rename, remove), and sections (create, get). There are no obvious gaps, and agents can handle full workflows without dead ends.