Microsoft To Do MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Microsoft To Do MCP ServerList my tasks in the Groceries list."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Microsoft To Do MCP Server
An MCP server that connects Claude (or any MCP-compatible client) to Microsoft To Do through the Microsoft Graph API — letting Claude read and manage your task lists and tasks on your behalf.
Runs entirely on your machine over stdio. No remote server ever sees your tasks or your tokens.
Features
Tool | Description |
| List all your task lists (Tasks, Groceries, etc.) |
| Create a new task list |
| Rename an existing list |
| Delete a list and all its tasks (destructive) |
| List tasks in a list, optionally filtered by status |
| Get the details of a single task |
| Create a task (title, notes, due date, importance) |
| Update fields on an existing task |
| Mark a task as completed |
| Delete a task (destructive) |
Related MCP server: todo-mcp
Prerequisites
Node.js 18 or newer
A Microsoft account (personal or work/school)
Claude Desktop or another MCP-compatible client
1. Register an app in Azure AD
This server authenticates as your own Azure AD app registration, so you'll need to create one (free, takes a couple of minutes):
Go to the Azure Portal → App registrations and click New registration.
Give it a name (e.g. "Microsoft To Do MCP"), and under Supported account types choose an option that includes personal Microsoft accounts, unless you only intend to use a work/school account.
Under Redirect URI, select platform "Mobile and desktop applications" and add:
http://localhost:3000/callbackClick Register, then copy the Application (client) ID from the overview page — you'll need it later.
Go to Authentication and enable "Allow public client flows", then save.
Go to API permissions → Add a permission → Microsoft Graph → Delegated permissions, and add:
Tasks.ReadWriteoffline_accessUser.Read
2. Install & build
Clone this repository, then from the project folder:
git clone https://github.com/hoaaah/Microsoft-To-Do-MCP-Server.git
cd Microsoft-To-Do-MCP-Server
npm install
npm run buildThis compiles the TypeScript source into dist/index.js.
3. Configure AI Client / Claude Desktop
Open your AI Client / Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the following entry, replacing PATH_TO_THIS_FOLDER with the absolute path to where you cloned this repo, and MS_TODO_CLIENT_ID with the Application (client) ID from Azure:
{
"mcpServers": {
"microsoft-todo": {
"command": "node",
"args": ["PATH_TO_THIS_FOLDER/dist/index.js"],
"env": {
"MS_TODO_CLIENT_ID": "your-azure-client-id-here"
}
}
}
}Save the file and restart Claude Desktop.
4. First sign-in
The first time Claude calls one of the todo_* tools, your default browser will open automatically, asking you to sign in with your Microsoft account and approve the Tasks.ReadWrite permission. Once you approve, the token is cached locally at:
~/.microsoft-todo-mcp/token-cache.jsonSubsequent sign-ins are silent — the cached refresh token is reused automatically as long as it hasn't expired or been revoked, so you won't need to log in again.
Revoking access
To force a fresh sign-in, delete the cache file:
~/.microsoft-todo-mcp/token-cache.jsonTo fully revoke the app's access to your account, go to:
account.live.com/consent/Manage for personal Microsoft accounts
Azure AD → Enterprise Applications for work/school accounts
Security notes
This server runs locally on your machine over stdio — there is no remote server storing or relaying your tokens.
todo_delete_task_listandtodo_delete_taskare destructive and cannot be undone. Claude will ask for confirmation before calling them.Your Azure app's client ID is not a secret and is safe to keep in your local config, but you should not commit it to a public repository alongside real task data or tokens.
Troubleshooting
Browser doesn't open on first sign-in: make sure port
3000is free, and that the redirect URI in your Azure app registration exactly matcheshttp://localhost:3000/callback."Need admin approval" error: your organization may require an admin to consent to the requested permissions — contact your Microsoft 365 administrator, or use a personal Microsoft account instead.
Claude doesn't see the tools: double-check the path in
claude_desktop_config.jsonpoints to the builtdist/index.js, and that you restarted Claude Desktop after editing the config.
License
Creator
This MCP was created by and is maintained by Heru Arief Wijaya.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables comprehensive Microsoft To Do task management through Microsoft Graph API with Entra ID OAuth authentication. Supports creating, updating, and managing todo lists, tasks, reminders, and due dates through natural language.
- Alicense-qualityDmaintenanceEnables AI assistants to manage Microsoft To Do tasks via the Graph API, supporting multiple accounts, encrypted auth, and full CRUD operations.72MIT
- Alicense-qualityDmaintenanceA Model Context Protocol (MCP) server that enables AI assistants like Claude and Cursor to interact with Microsoft To Do via the Microsoft Graph API.27MIT
- AlicenseAqualityAmaintenanceEnables AI coding agents to read Microsoft Planner and To Do tasks across multiple M365 tenants with proper authentication, and supports optional write operations limited to tasks the agent created.14MIT
Related MCP Connectors
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/hoaaah/Microsoft-To-Do-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server