Microsoft Todo MCP Service
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 |
|---|---|
| auth-statusA | Check if you're authenticated with Microsoft Graph API. Shows current token status and expiration time, and indicates if the token needs to be refreshed. |
| get-task-listsA | Get all Microsoft Todo task lists (the top-level containers that organize your tasks). Shows list names, IDs, and indicates default or shared lists. |
| create-task-listA | Create a new task list (top-level container) in Microsoft Todo to help organize your tasks into categories or projects. |
| update-task-listA | Update the name of an existing task list (top-level container) in Microsoft Todo. |
| delete-task-listA | Delete a task list (top-level container) from Microsoft Todo. This will remove the list and all tasks within it. |
| get-tasksB | Get tasks from a specific Microsoft Todo list. These are the main todo items that can contain checklist items (subtasks). |
| create-taskA | Create a new task in a specific Microsoft Todo list. A task is the main todo item that can have a title, description, due date, and other properties. |
| update-taskB | Update an existing task in Microsoft Todo. Allows changing any properties of the task including title, due date, importance, etc. |
| delete-taskA | Delete a task from a Microsoft Todo list. This will remove the task and all its checklist items (subtasks). |
| get-checklist-itemsA | Get checklist items (subtasks) for a specific task. Checklist items are smaller steps or components that belong to a parent task. |
| create-checklist-itemA | Create a new checklist item (subtask) for a task. Checklist items help break down a task into smaller, manageable steps. |
| update-checklist-itemA | Update an existing checklist item (subtask). Allows changing the text content or completion status of the subtask. |
| delete-checklist-itemA | Delete a checklist item (subtask) from a task. This removes just the specific subtask, not the parent 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 has a clearly distinct purpose with no ambiguity, as they are organized around specific resources (task lists, tasks, checklist items) and actions (create, get, update, delete). For example, create-task and create-checklist-item target different levels of the hierarchy, and operations like delete-task-list and delete-task are clearly separated by scope.
The tool names follow a highly consistent verb_noun pattern throughout, such as create-task, get-tasks, update-checklist-item, and delete-task-list. All tools use hyphen-separated lowercase names, making them predictable and easy to understand without any deviations in style.
With 13 tools, the count is well-scoped for managing Microsoft Todo, covering CRUD operations for task lists, tasks, and checklist items. Each tool earns its place by addressing specific needs in the domain, avoiding both redundancy and significant gaps.
The tool surface provides complete CRUD/lifecycle coverage for the Microsoft Todo domain, including authentication status, and operations on task lists, tasks, and checklist items. There are no obvious gaps or dead ends, enabling agents to handle all core workflows effectively.