microsoft-todo-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AZURE_TENANT_ID | No | Optional Azure AD tenant ID for organizations that require a specific tenant (e.g., due to conditional access policies). Defaults to 'common'. |
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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_task_listsA | List all Microsoft To Do task lists. |
| create_task_listB | Create a new Microsoft To Do task list. |
| update_task_listA | Update the display name of a Microsoft To Do task list. |
| delete_task_listB | Delete a Microsoft To Do task list and all its tasks. |
| list_tasksA | List tasks in a Microsoft To Do task list with pagination and filtering support. |
| create_taskA | Create a new task in a Microsoft To Do task list. due_date should be YYYY-MM-DD format. importance can be: low, normal, high. |
| update_taskA | Update a task in a Microsoft To Do task list. Only provided fields are updated. |
| complete_taskB | Mark a Microsoft To Do task as completed. |
| delete_taskC | Delete a task from a Microsoft To Do task list. |
| list_checklist_itemsB | List checklist items (subtasks) of a Microsoft To Do task. |
| create_checklist_itemC | Add a checklist item (subtask) to a Microsoft To Do task. |
| update_checklist_itemB | Update a checklist item (subtask) of a Microsoft To Do task. Use is_checked to check/uncheck. |
| delete_checklist_itemB | Delete a checklist item (subtask) from a Microsoft To Do task. |
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 13 tools
Each tool targets a specific entity (task list, task, checklist item) with distinct actions. There is no overlap; even 'complete_task' is a clear shorthand for updating the completion status.
All tools use a consistent 'verb_noun' pattern with underscores (e.g., create_task, list_checklist_items). No mixing of casing or irregular verbs.
With 13 tools, the surface is well-scoped for a task management server—covering CRUD for three entities without being excessive or sparse.
The tool set covers creation, retrieval, updating, and deletion for all three entities (task lists, tasks, checklist items), including specialized actions like completing a task and toggling checklist items.