MCP for Microsoft To Do
mcp-microsoft-todo
π«π· Version franΓ§aise : README.fr.md
MCP server to drive Microsoft To Do from Claude Code, Claude Desktop, or any MCP-compatible client.
Works with any Microsoft account: personal (outlook.com, hotmail.com, live.com), Office 365 personal or business, Microsoft 365. Zero Azure setup required on the user side β just sign in via device code flow.
π End-user installation
Prerequisites (all clients)
Node.js 20+ (nodejs.org)
A Microsoft account (free or paid)
No Azure account required, no App Registration to create, nothing to compile.
π¦ Claude Code (CLI)
Install (one command):
claude mcp add --transport stdio microsoft-todo -- npx -y @mag-cie/mcp-microsoft-todoIf you have a personal Microsoft account (outlook.com, hotmail.com, live.com, msn.com, Office 365 personal), add MS_TENANT=consumers:
claude mcp add --transport stdio microsoft-todo --env MS_TENANT=consumers -- npx -y @mag-cie/mcp-microsoft-todoVerify it's wired up:
claude mcp listFirst use β recommended: pre-auth in a terminal first to avoid the "stuck on first MCP call" issue (where the device code is printed to MCP stderr but Claude Code doesn't surface it):
# macOS / Linux
MS_TENANT=consumers npx -y @mag-cie/mcp-microsoft-todo@latest --auth# Windows PowerShell
$env:MS_TENANT="consumers"; npx -y @mag-cie/mcp-microsoft-todo@latest --authYou'll see:
To sign in, use a web browser to open the page https://www.microsoft.com/link and enter the code XXXXXXXXXVisit the URL, enter the code, sign in. The token is cached in ~/.mcp-microsoft-todo/token-cache.json and refreshed automatically β you'll never have to do this again. Now go to Claude Code and any prompt that calls a tool will work instantly.
Skip the pre-auth step if you're feeling lucky β the MCP will trigger the device code flow on first call too. The code goes to the Claude Code MCP log file (look in
%USERPROFILE%\.claude\logs\on Windows or~/.claude/logs/elsewhere).
Update to the latest version:
claude mcp remove microsoft-todo
claude mcp add --transport stdio microsoft-todo -- npx -y @mag-cie/mcp-microsoft-todo@latestThe -y flag of npx auto-accepts the download. Without @latest, npx may serve a stale cached version.
Uninstall:
claude mcp remove microsoft-todo
# Purge the token cache:
rm -rf ~/.mcp-microsoft-todoπͺ Claude Desktop (app)
1. Locate the config file:
OS | Path |
Windows |
|
macOS |
|
Linux |
|
On Windows, you can open it directly with:
notepad $env:APPDATA\Claude\claude_desktop_config.jsonIf the file doesn't exist, create it with an empty JSON object {} then edit.
2. Add the config:
{
"mcpServers": {
"microsoft-todo": {
"command": "npx",
"args": ["-y", "@mag-cie/mcp-microsoft-todo"]
}
}
}For a personal Microsoft account, add env:
{
"mcpServers": {
"microsoft-todo": {
"command": "npx",
"args": ["-y", "@mag-cie/mcp-microsoft-todo"],
"env": { "MS_TENANT": "consumers" }
}
}
}To localize the compact-format strings (optional, see Localization):
{
"env": { "MS_TENANT": "consumers", "MCP_LOCALE": "fr" }
}3. Restart Claude Desktop COMPLETELY (not just close the window):
Windows: right-click systray icon β Quit, then relaunch
macOS: β+Q then relaunch
4. Verify it's wired up:
In Claude Desktop, look at the π plug or π§ tools icon at the bottom right of the input area β you should see microsoft-todo listed.
5. First auth β recommended pre-auth in a terminal:
# macOS / Linux
MS_TENANT=consumers npx -y @mag-cie/mcp-microsoft-todo@latest --auth# Windows PowerShell
$env:MS_TENANT="consumers"; npx -y @mag-cie/mcp-microsoft-todo@latest --authYou'll see the device code immediately in the terminal. Visit the URL, enter the code, sign in. Token cached. Now Claude Desktop will reuse this cache β no need to fish in the logs.
Without --auth, the device code goes to the Claude Desktop MCP log file:
Windows:
%APPDATA%\Claude\logs\mcp-server-microsoft-todo.logmacOS:
~/Library/Logs/Claude/mcp-server-microsoft-todo.log
Update: edit the version in args (@mag-cie/mcp-microsoft-todo@latest), restart Claude Desktop. Or let npx do its thing (npx cache ~24h).
π§ Cursor / Continue / other stdio MCP clients
Any MCP client that supports the stdio transport works the same way. Generic format:
command: npx
args: -y @mag-cie/mcp-microsoft-todo
env: MS_TENANT=consumers (if personal account)Adapt to the client's config format (often JSON or TOML similar to Claude Desktop).
π‘ Example prompts
Once installed, just ask Claude in natural language. Sample prompts that exercise the main tools:
Prompt | Tool(s) |
"Show me all my To Do lists" |
|
"What do I have to do today?" |
|
"Show me my overdue tasks" |
|
"List tasks tagged 'work'" |
|
"Find any task containing 'invoice'" |
|
"Add a daily recurring 'Workout' task" |
|
"Mark these 5 tasks as done" |
|
"Move 'Buy bread' from Personal to Shopping" |
|
"Add a 'recipe' subtask to the cake task" |
|
"Tag all my Magaria tasks as 'urgent'" |
|
"Export my work tasks as iCalendar" |
|
"Attach a project_id metadata to this task" |
|
π Auth troubleshooting
Symptom | Solution |
"This page isn't right" page after sign-in | Add |
Browser opens with the wrong Microsoft account | Use an InPrivate/Incognito window for the sign-in |
| Purge the token cache and re-auth: |
| Install Node 20+ from nodejs.org. On Windows, verify it's in PATH (relaunch your terminal after install) |
Token expired, refresh fails | Purge the cache and re-auth |
Device code never appears | Verify the server is spawning β Claude Code: |
| You're using a dev fork β export |
π Available tools (28)
Safety column legend: read = read-only, write = mutates state (non-idempotent create), update = idempotent mutation (safe to retry), delete = destructive (data loss). See Safety annotations below for details.
Lists & tasks
Tool | Safety | Description |
| read | All your To Do lists |
| read | Tasks of a list (OData filter, |
| read | Detail of a task by ID |
| write | Create a task (title, body, importance, due date, categories, recurrence, reminder) |
| update | Update title, status, due date, recurrence, reminder⦠|
| update | Mark as completed |
| delete | Delete permanently |
| delete | Move a task from one list to another (source task is deleted) |
| read | Cross-list search by title |
| read | Summary of tasks due today + overdue |
| read | Every task across every list in one round-trip (uses Graph |
Batch operations (saves API calls)
Tool | Safety | Description |
| write | Create up to 100 tasks in a single Graph |
| update | Mark up to 100 tasks as completed in one call |
| delete | Delete up to 100 tasks in one call |
Sub-tasks (checklist items)
Tool | Safety | Description |
| read | Sub-items of a task |
| write | Add a sub-item |
| update | Rename / check / uncheck |
| delete | Delete a sub-item |
Linked resources (external URLs attached to a task)
Tool | Safety | Description |
| read | List the linked resources of a task |
| write | Attach a URL or external reference |
| delete | Delete a linked resource |
Open extensions (custom JSON metadata)
Tool | Safety | Description |
| read | List the open extensions of a task |
| update | Upsert: create or update an extension (project_id, external_ref, etc.) |
| delete | Delete an extension |
Cross-list helpers
Tool | Safety | Description |
| read | All overdue tasks, aggregated across all lists |
| read | All tasks with a given category, cross-lists |
| update | Add/remove categories on many tasks in 2 batch phases |
Export
Tool | Safety | Description |
| read | iCalendar export (VTODO + RRULE + VALARM) for import into Google Cal / Apple Cal / Outlook / Thunderbird |
Output format
By default, tools return a compact text format (one line per item) to save LLM tokens. Legend:
[!]high importance,[?]low (nothing if normal)[v]completed,[>]in progress,[w]waiting,[d]deferred (nothing if not started)due:,rem:,rec:,cat:,body:fields shown only when populated
To get the full Graph JSON, pass verbose: true to any read tool.
π Safety annotations
Every tool exposed by this server carries the MCP tool annotations defined by the Model Context Protocol spec (2025-06-18):
Annotation | Meaning |
| The tool only fetches data; running it has no side effects on Microsoft Graph |
| The tool deletes data or otherwise causes data loss that cannot be undone |
| Running the tool repeatedly with the same arguments yields the same end state (safe to retry) |
| The tool talks to an external system (Microsoft Graph) β always |
| Human-readable display name for MCP clients |
These hints are advisory β the server itself enforces nothing β but MCP clients (Claude Code, Claude Desktop, Cursor, β¦) can use them to:
Auto-approve
readOnlyHint: truecalls without prompting (faster UX for read-heavy workflows)Show a confirmation dialog before
destructiveHint: truecalls (e.g.delete_task,batch_delete_tasks,move_task)Retry on transient failures only when
idempotentHint: trueDisplay the friendly
titleinstead of the snake_casename
The full mapping is in src/index.ts (ANNOTATIONS constant). Summary by safety class (see also the per-tool Safety column above):
read (15 tools): all
list_*,get_*,search_*,summarize_*,export_*βreadOnlyHint: truewrite (4 tools):
create_*,batch_create_tasksβdestructiveHint: false, idempotentHint: falseupdate (5 tools):
update_*,complete_*,set_extension,bulk_update_categories,batch_complete_tasksβdestructiveHint: false, idempotentHint: truedelete (5 tools):
delete_*,batch_delete_tasks,move_taskβdestructiveHint: true, idempotentHint: true
move_task is classified as delete because it deletes the source task (a new task is created in the target list with a different id).
π Localization
The MCP works in any language out of the box β Claude reads the data the server returns and replies to the user in whatever language they prompted in. Try "List my tasks", "Liste mes tΓ’ches", "Zeig meine Aufgaben", "ζηδ»»ε‘" β all work.
Optionally, you can localize the compact-format short labels returned by the server itself (No tasks., Due today:, Overdue:, Task X deleted., etc.) β this is a marginal improvement (saves a few tokens, slightly cleaner LLM context). Set MCP_LOCALE in your env:
Locale | Code |
English (default) |
|
FranΓ§ais |
|
EspaΓ±ol |
|
Deutsch |
|
Resolution order: MCP_LOCALE β LC_ALL β LANG β fallback en. Only the first 2 chars are inspected (so fr_FR.UTF-8 works). Unsupported locale β falls back to en.
{
"mcpServers": {
"microsoft-todo": {
"command": "npx",
"args": ["-y", "@mag-cie/mcp-microsoft-todo"],
"env": { "MCP_LOCALE": "fr" }
}
}
}π Security & privacy
The Microsoft token is stored only on your machine in
~/.mcp-microsoft-todo/token-cache.jsonNo data transits through MAG&Cie servers
Revoke access at any time at https://account.live.com/consent/Manage
To purge the local token:
rm -rf ~/.mcp-microsoft-todo
Graph permissions requested: Tasks.ReadWrite, Tasks.ReadWrite.Shared, offline_access.
π§βπ» Developer setup (fork / contribution)
If you fork or want to develop locally with your own Azure AD App Registration:
1. Azure AD App Registration (maintainer/fork side only)
https://portal.azure.com β Microsoft Entra ID β App registrations β New registration
Name:
mcp-microsoft-todo(free choice)Supported account types: Accounts in any organizational directory and personal Microsoft accounts
Redirect URI: leave empty
Register
Note the Application (client) ID
Authentication tab β Allow public client flows: Yes
Authentication tab β Add a platform β Mobile and desktop applications β check
https://login.microsoftonline.com/common/oauth2/nativeclientAPI permissions tab β Add a permission β Microsoft Graph β Delegated β add
Tasks.ReadWrite,Tasks.ReadWrite.Shared, andoffline_access. Grant admin consent if on a corporate tenant.
2. Build and local auth
git clone https://github.com/MAG-Cie/mcp-microsoft-todo
cd mcp-microsoft-todo
npm install
npm run build
export MS_CLIENT_ID="<your-client-id>" # PowerShell: $env:MS_CLIENT_ID="..."
export MS_TENANT="common"
npm run authThe token cache will be written to ~/.mcp-microsoft-todo/token-cache.json.
3. Wire up Claude Code (local build)
# Windows PowerShell
$env:MS_CLIENT_ID="<your-client-id>"
claude mcp add --transport stdio microsoft-todo -- node "C:\path\to\mcp-microsoft-todo\dist\index.js"# macOS / Linux
export MS_CLIENT_ID="<your-client-id>"
claude mcp add --transport stdio microsoft-todo -- node /path/to/mcp-microsoft-todo/dist/index.jsβ οΈ Env vars must be visible at spawn time. On Windows with fnm, verify the PowerShell session that launches
claudehasMS_CLIENT_IDexported.
4. Run tests
npm test # one-shot
npm run test:watch # watch modeβ¬οΈ Upgrading from earlier versions
From | To | Action required |
|
| Re-auth required: token cache lacks the new |
|
| No breaking change β new tools added. Token compatible. |
any |
| Stable API marker. Future minor versions guarantee no breaking change to tool names, args, or return formats (compact + verbose). |
πΊ Roadmap
v0.1 β stdio + 6 CRUD tools
v0.2 β distributable npm package, baked-in client ID
v0.3 β recurrence + reminders + checklists + linkedResources + search + move + summarize_today + retry/error robustness + vitest tests + compact format (verbose opt-in)
v0.4 β auto pagination +
$batchoperations +Tasks.ReadWrite.Sharedscope (read shared lists)v0.5 β open extensions + cross-list helpers (overdue, by category, bulk update) + iCalendar export
v1.0 β stable milestone: GitHub Actions CI + extended tests + snapshot tests + README polish
Possible future versions:
v1.1 β file attachments (Graph beta)
v1.2 β auto-pagination follow-on for
summarize_today/search_tasks/list_overdue_tasksv2.0 β remote HTTP/SSE transport for Claude.ai custom connectors (multi-user OAuth)
π License
MIT β Β© MAG&Cie
Maintenance
Latest Blog Posts
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/MAG-Cie/mcp-microsoft-todo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server