Microsoft Planner MCP server that writes tasks: creae tasks and buckets, list plans, complete tasks. Tass.ReadWrite only.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
claude mcp add kairos -- uvx kairos-mcp{
"mcpServers": {
"kairos": {
"command": "uvx",
"args": ["kairos-mcp"]
}
}
}MCP Servers overview
# kairos
**A Microsoft Planner MCP server that writes tasks.**
An agent creates tasks and buckets in your Planner plans, lists what is there,
and marks tasks complete. Sign-in is delegated device-code against your own
Entra app with the single Graph scope `Tasks.ReadWrite`; the token reaches only
the plans you are a member of and nothing else in the tenant.
kairos is the sibling of [iris](https://github.com/SuperAngryMonkey/iris), the
mail server that cannot send. They are deliberately separate. iris's value is an
*absent* capability; a Planner writer's value is the write itself. Creating a
task creates a task. Completing one completes one. kairos does not pretend
otherwise, so read [what it can do](#what-it-can-and-cannot-do) before you
install it.
---
## Install
```bash
uvx kairos-mcp # run without installing
pip install kairos-mcp
```
**Python 3.10 or newer.** macOS ships Python 3.9, which is too old — `mcp`
requires 3.10+. Use [`uv`](https://docs.astral.sh/uv/) (it comes with `uvx` and
manages its own Python), or install a current Python with Homebrew
(`brew install python@3.12`). The system `python3` on macOS will not work.
## Setup
**You must register your own Entra application.** There is no shared app
registration and no hosted service — kairos talks directly from your machine to
your tenant. A shared app would mean trusting someone else's client ID with
write access to your plans.
1. Entra admin centre → **App registrations** → **New registration**. Single
tenant is fine. No redirect URI needed.
2. **Authentication** → Settings → enable **Allow public client flows**. Device
code sign-in needs this. No client secret is used anywhere.
3. **API permissions** → Microsoft Graph → **Delegated** → add
**`Tasks.ReadWrite`** ("Create, read, update and delete user's tasks and
projects"). Nothing else.
4. Copy the **Application (client) ID** and **Directory (tenant) ID**. Neither
is a secret.
Then add kairos to your MCP client:
```json
{
"mcpServers": {
"kairos": {
"command": "uvx",
"args": ["kairos-mcp"],
"env": {
"KAIROS_CLIENT_ID": "<application (client) id>",
"KAIROS_TENANT_ID": "<directory (tenant) id>",
"KAIROS_DEFAULT_PLAN": "Development"
}
}
}
}
```
Sign in once, either from a terminal:
```bash
KAIROS_CLIENT_ID=... KAIROS_TENANT_ID=... uvx kairos-mcp auth
```
or from inside the MCP client: call `kairos_login`, open the URL, enter the
code, then call `kairos_login_finish`. Either way the token cache lands in
`~/.config/kairos/token_cache.json`, mode 600, and refreshes silently from then
on.
`KAIROS_DEFAULT_PLAN` is optional. Without it, every call must name a plan —
unless your account can see exactly one, in which case that one is used.
## Clients
kairos is a local **stdio** MCP server: your MCP client launches it as a child
process on the same machine. It works with any client that supports local stdio
servers — Claude Desktop, Cursor, the Grok CLI and others. It does not work with
clients that only accept remote MCP connectors over HTTP.
## Tools
| Tool | What it does |
|---|---|
| `kairos_login` | Starts device-code sign-in, returns a URL and a code |
| `kairos_login_finish` | Completes sign-in; safe to call repeatedly while you type the code |
| `kairos_auth_status` | Who is signed in, whether Graph is reachable, how many plans are visible |
| `list_planner_plans` | Every plan you can see, with its buckets and IDs (cached a few minutes; `refresh=true` to re-read) |
| `create_planner_task` | Creates a task: `title`, optional `notes`, `plan`, `bucket`, `due_on` (YYYY-MM-DD). Returns the task ID and a URL |
| `create_planner_bucket` | Creates a bucket in a plan. Idempotent — an existing bucket of that name is returned, not duplicated |
| `list_planner_tasks` | Tasks in a plan (or `plan="*"` for all), optionally one bucket, open only by default |
| `complete_planner_task` | Marks a task 100% by `task_id`, or by `title` when the match is unique. `reopen=true` undoes it |
Plans and buckets are matched by name, case-insensitively, or by ID. A partial
name works when it is unambiguous. Omit `bucket` and the plan's first bucket is
used.
### Completing by title refuses ambiguity
`complete_planner_task(title="deploy")` searches open tasks in the plan. One
match: it completes it. Two or more: it stops and lists them with IDs so you can
re-call with the exact `task_id`. It never picks one for you.
## CLI
```
kairos-mcp run the MCP server on stdio (what your client launches)
kairos-mcp auth interactive device-code sign-in
kairos-mcp status who is signed in, is Graph reachable
kairos-mcp logout remove the token cache
```
## Re-authenticating
A refresh token stops working after a password change, an admin revocation, or
long disuse. Every tool then returns a message that says so and how to fix it:
`kairos-mcp auth` in a terminal, or `kairos_login` → `kairos_login_finish` from
the client. Nothing else needs to change.
## What it can and cannot do
**Can:** create tasks and buckets in any plan you are a member of; set a task's
notes and due date at creation; list plans, buckets and tasks; mark a task
complete or reopen it.
**Cannot:** delete anything — there is no delete tool, and the design keeps it
that way. Assign people. Set priority, labels, checklists or attachments. Edit an
existing task's title, notes or due date. See plans you are not a member of.
`Tasks.ReadWrite` is the narrowest Graph scope that permits creating a Planner
task. It also permits reading and updating every task in every plan you belong
to, and in principle deleting them. kairos does not expose delete, but the
*token* could — the boundary is this code, not Microsoft's consent screen. If
that distinction matters to you, it should; see [SECURITY.md](SECURITY.md).
## Other controls
- **Kill switch** — create `~/.config/kairos/DISABLED`, or set
`KAIROS_DISABLED=1`, and every tool refuses.
- **Audit log** — every write (login, create, complete, reopen) is appended to
`~/.config/kairos/audit.log`.
- **`KAIROS_CONFIG_DIR`** moves the cache, log and kill-switch file elsewhere;
`KAIROS_TOKEN_CACHE` and `KAIROS_AUDIT_LOG` override individual paths.
## Graph notes, for the curious
A task's notes are not on the task; they live on a child `details` entity that
Graph guards with an ETag. kairos creates the task, reads the details ETag, then
PATCHes with `If-Match`. Completion is the same dance on the task itself.
Planner throttles hard, so every call retries on 429 with `Retry-After` and
there is a short pause between chained calls. New tasks and buckets are pinned
to the top of their column (`orderHint: " !"`).
## License
MIT — see [LICENSE](LICENSE).
<!-- mcp-name: io.github.SuperAngryMonkey/kairos -->
What people ask about kairos
What is SuperAngryMonkey/kairos?
+
SuperAngryMonkey/kairos is mcp servers for the Claude AI ecosystem. Microsoft Planner MCP server that writes tasks: creae tasks and buckets, list plans, complete tasks. Tass.ReadWrite only. It has 0 GitHub stars and its last recorded update is dated 2026-09-19.
How do I install kairos?
+
You can install kairos by cloning the repository (https://github.com/SuperAngryMonkey/kairos) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is SuperAngryMonkey/kairos safe to use?
+
Our security agent has analyzed SuperAngryMonkey/kairos and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains SuperAngryMonkey/kairos?
+
SuperAngryMonkey/kairos is maintained by SuperAngryMonkey. The last recorded GitHub activity is dated 2026-09-19, with 0 open issues.
Are there alternatives to kairos?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy kairos to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/superangrymonkey-kairos)<a href="https://claudewave.com/repo/superangrymonkey-kairos"><img src="https://claudewave.com/api/badge/superangrymonkey-kairos" alt="Featured on ClaudeWave: SuperAngryMonkey/kairos" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.