AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Microsoft Todo Mcp

mcp-fabienbutz-microsoft-todo-mcp · by fabienbutz

Model Context Protocol server for Microsoft To Do (via Microsoft Graph)

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add mcp-fabienbutz-microsoft-todo-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-fabienbutz-microsoft-todo-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Microsoft Todo Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

microsoft-todo-mcp

[](https://www.npmjs.com/package/microsoft-todo-mcp) [](https://github.com/fabienbutz/microsoft-todo-mcp/actions/workflows/ci.yml)

A Model Context Protocol server for Microsoft To Do, built on the Microsoft Graph API. Lets an MCP client (Claude Desktop, Claude Code, …) read and manage your To Do lists, tasks, and checklist items.

> Install. Add it to your MCP client config (below) and run npx -y microsoft-todo-mcp login once. No separate install — npx ships with Node.js. By default it authenticates with the well-known Microsoft Graph CLI public client id, so there's nothing to register; set MS_TODO_CLIENT_ID to use [your own Entra app](docs/ENTRA-APP-SETUP.md) instead. (To run an unpublished commit, use github:fabienbutz/microsoft-todo-mcp as the spec instead of microsoft-todo-mcp.)

What it can access

Delegated Microsoft Graph scope Tasks.ReadWriteyour own To Do lists and tasks, nothing else (no mail, no files, no calendar). No telemetry, no phone-home: logs go to stderr on your machine and nowhere else. The refresh token is cached at ~/.config/microsoft-todo-mcp/token-cache.json with 0600 permissions — treat it like an SSH key.

By default the app identity shown on the Microsoft sign-in / consent screen is Microsoft Graph Command Line Tools (Microsoft's well-known public client); the token it issues is still limited to Tasks.ReadWrite. Set MS_TODO_CLIENT_ID if you'd rather it be your own named app.

Quick start

  1. Add the server to your MCP client.

Claude Desktop (claude_desktop_config.json): ``json { "mcpServers": { "microsoft-todo": { "command": "npx", "args": ["-y", "microsoft-todo-mcp"] } } } ` To use your own Entra app, add "env": { "MSTODOCLIENT_ID": "" }. On Windows, if Claude Desktop can't find npx, use "command": "cmd", "args": ["/c", "npx", "-y", "microsoft-todo-mcp"] — see [docs/INSTALL-WINDOWS.md`](docs/INSTALL-WINDOWS.md).

Claude Code: ``bash claude mcp add microsoft-todo -- npx -y microsoft-todo-mcp ``

  1. Restart your MCP client. The microsoft-todo tools are now available.
  1. Sign in. Ask Claude — "sign me in to Microsoft To Do" — or just use any tool: the server gives you a short code, you open in a browser, enter it, and approve the consent ("Microsoft Graph Command Line Tools"). The token is cached afterwards and refreshed silently. (Prefer a terminal? npx -y microsoft-todo-mcp login does the same — and warms the npx cache while it's at it.)

Tools

| Tool | Risk | Description | | --- | --- | --- | | auth_status | read | Current sign-in state (account, token expiry, any pending sign-in). No Graph call. | | sign_in | read | Start a device-code sign-in; returns a code + URL to enter, completes in the background. | | list_task_lists | read | List all task lists. | | create_task_list | write | Create a list. | | update_task_list | write | Rename a list. | | delete_task_list | destructive | Delete a list and all its tasks. | | list_tasks | read | List tasks in a list (filter by status; expand checklist / linked resources). | | get_task | read | Get one task. | | create_task | write | Create a task (title, body, due/reminder date-time, importance, status, categories). | | update_task | write | Update task fields; set status: "completed" to complete. | | complete_task | write | Mark a task completed. | | delete_task | destructive | Delete a task. | | list_checklist_items | read | List a task's checklist items. | | add_checklist_item | write | Add a checklist item. | | update_checklist_item | write | Rename / check / uncheck a checklist item. | | delete_checklist_item | destructive | Delete a checklist item. |

Date-time inputs accept either an ISO-8601 string (2026-05-20T17:00:00, interpreted in the host's timezone) or { "dateTime": "...", "timeZone": "Europe/Berlin" }. Errors come back as structured { "error": { "code": "...", "message": "...", "requestId": "..." } } — see [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for the code list.

Modes

| Flag / env | Effect | | --- | --- | | --readonly / MS_TODO_READONLY=1 | Only read tools are exposed. Useful for "let Claude see my tasks but not touch them." | | --no-destructive / MS_TODO_NO_DESTRUCTIVE=1 | Hides delete tools; writes still allowed. | | --scope-readonly / MS_TODO_SCOPE_READONLY=1 | Requests only the Tasks.Read Graph scope (a real read-only token, not just a runtime guard — requires re-login). |

Pass flags after the package spec, e.g. "args": ["-y", "microsoft-todo-mcp", "--readonly"].

Configuration

| Env var | Default | Notes | | --- | --- | --- | | MS_TODO_CLIENT_ID | Microsoft Graph CLI well-known client id | Set to use your own Entra app registration (see [docs/ENTRA-APP-SETUP.md](docs/ENTRA-APP-SETUP.md)). | | MS_TODO_AUTHORITY | https://login.microsoftonline.com/common | Use .../ for a single-tenant app. | | MS_TODO_TOKEN_CACHE | ~/.config/microsoft-todo-mcp/token-cache.json | Where the refresh token is stored (0600). | | MS_TODO_MAX_RESULTS | 200 | Soft cap on items returned by list tools (page-granular). | | MS_TODO_GRAPH_BASE | https://graph.microsoft.com/v1.0 | Override for sovereign clouds / testing. | | LOG_LEVEL | info | silent \| error \| warn \| info \| debug. Logs are JSON on stderr. |

CLI flags take precedence over env vars.

CLI

npx -y microsoft-todo-mcp [serve]   start the MCP server on stdio (default)
npx -y microsoft-todo-mcp login     sign in via device code
npx -y microsoft-todo-mcp logout    clear the cached token
npx -y microsoft-todo-mcp whoami    show the signed-in account
npx -y microsoft-todo-mcp --version

Development

git clone https://github.com/fabienbutz/microsoft-todo-mcp.git
cd microsoft-todo-mcp
npm install          # also builds dist/ via the `prepare` script
npm run typecheck
npm run lint
npm test             # vitest + fast-check
node dist/index.js login   # then `node dist/index.js` to run the server

Architecture and design rationale: [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md). Windows walkthrough: [docs/INSTALL-WINDOWS.md](docs/INSTALL-WINDOWS.md). Contributing (incl. the manual end-to-end smoke test): [CONTRIBUTING.md](CONTRIBUTING.md). Security: [SECURITY.md](SECURITY.md).

License

MIT © Fabien Butz

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.