Bring async-first working practices into your editor and AI assistant. This Model Context Protocol server gives your AI the tools to draft a decision doc, turn a meeting into an async artifact, pressure-test a status update, or settle a sync-vs-async debate — without leaving the tools you already work in. It's the method from Open and Async — the collaborative software-development playbook for rem
Add this skill
npx mdskills install open-and-async/open-and-async-mcp@open-and-async? Sign in with GitHub to claim this listing.Well-designed async collaboration toolset with clear utility and good documentation
1# Open and Async — MCP Server2345Bring async-first working practices into your editor and AI assistant. This6[Model Context Protocol](https://modelcontextprotocol.io) server gives your AI the7tools to draft a decision doc, turn a meeting into an async artifact, pressure-test a8status update, or settle a sync-vs-async debate — without leaving the tools you9already work in.1011It's the method from **[Open and Async](https://open-and-async.com)** — the12collaborative software-development playbook for remote and distributed teams — as13working tools, not reading.1415## What you can do with it1617- **Stop writing decision docs from a blank page.** Hand your AI the decision and the18 options; get back a structured ADR scaffold — context, tradeoffs, the call, and how19 reversible it is.20- **Turn "let's hop on a call" into an artifact.** Give it a meeting's purpose and21 agenda; get the async equivalent with an owner and a deadline.22- **Ship status updates that don't blindside anyone.** Score a draft against the23 "work loudly / no surprises" rubric and get concrete fixes before you post it.24- **Settle sync vs. async in seconds.** Describe the task; get a recommendation and25 the rule behind it.26- **Run a standup without a meeting.** Drop in a structured async-standup template27 your team can adopt today.28- **Win the "async is too slow" argument.** Map common objections to a ready reframe,29 pull role-aware guidance, or search the book's principles — each answer cited and30 linked.31- **Get coached end to end.** Run the `coach` prompt with a situation and it triages32 sync vs. async, generates the right artifact, adds role guidance, and caps with a33 shareable line — one composed answer, or a nudge to just have the conversation when34 that's the better call.3536## Install3738**Claude Code:**3940```sh41claude mcp add open-async -- npx -y @open-and-async/mcp42```4344**Claude Desktop** (`claude_desktop_config.json`):4546```json47{48 "mcpServers": {49 "open-async": {50 "command": "npx",51 "args": ["-y", "@open-and-async/mcp"]52 }53 }54}55```5657Any MCP client that speaks stdio works the same way: run `npx @open-and-async/mcp`.5859## The toolbox6061### Method tools — pure utility, use them on any project6263| Tool | What it does |64| --- | --- |65| `draft_decision_doc` | Decision + options → a structured ADR/decision-doc scaffold (context, options, tradeoffs, decision, reversibility). |66| `convert_meeting_to_async` | Meeting purpose/agenda → the async equivalent (artifact, owner, deadline). |67| `score_status_update` | Scores a draft update against the "work loudly / no surprises" rubric and suggests fixes. |68| `run_async_standup` | A structured async-standup template a team can adopt. |69| `triage_sync_vs_async` | Recommends sync vs async for a task, with the decision rule. |7071### Reference tools — the book's thinking, on demand7273| Tool | What it does |74| --- | --- |75| `book_outline` | Sections + chapters + one-line TL;DRs. The map. |76| `get_chapter_summary` | A chapter's TL;DR + taglines + read-the-chapter link. |77| `search_principles` | Keyword search over the summary corpus; short cited snippets. |78| `handle_objection` | Maps skepticism ("async is slow") to the book's reframe. |79| `get_guidance` | Role-aware (`manager`/`ic`) guidance for a topic. |80| `get_taglines` | Taglines + their `/q/<slug>` quote-card URLs. |8182### Resources8384- `book://outline` — sections, chapters, TL;DRs (JSON)85- `book://taglines` — taglines + quote-card URLs (JSON)86- `book://about` — what this server is, what it does and doesn't contain, and where to get the book8788### Prompts8990Invoke these directly from your client (e.g. as slash commands):9192- `coach` — **the full method on one situation.** Triages sync vs. async, generates93 the right artifact, enriches with role guidance, and caps with a shareable tagline —94 one composed deliverable. Stops and recommends a real-time conversation when the95 situation genuinely needs one.96- `async-standup`, `write-adr`, `meeting-to-issue`, `weekly-update` — parameterized97 templates for a single task.9899## Good to know100101**It's a real tool, not a paywall.** The method tools work on their own — no book102required. The reference tools answer from the book's already-public summaries and a103paraphrased framework layer, always capped and always cited so you can trace any104snippet to its chapter. The "get the book" link surfaces about once per session, not105on every line — it's a tool, not an ad. No verbatim book prose is bundled (the only106data file is `data/book.json.br`), so what you install is genuinely useful, not a107teaser.108109**Staying current.** `data/book.json.br` ships with a `version` that tracks the book's110edition, so the server can tell you which edition it's based on and re-sync when a new111one lands.112113**Generated output is a template, not the author speaking.** The method tools format114_your_ input into decision docs, standups, and triage calls. That output is generated115guidance to adapt — it is not a personal statement, quote, or endorsement by Ben Balter116or Open & Async LLC, and shouldn't be presented as one. Reference-tool snippets are117summaries the tool cites back to the book, not verbatim prose.118119## Licensing120121This package is split-licensed — see [LICENSE](LICENSE) for the overview:122123- **Code** (everything under `src/`) — [MIT](CODE-LICENSE.md).124- **Data** (`data/book.json.br`) — proprietary; © Open & Async LLC. You may use it only125 as part of running this software. No redistribution as a standalone dataset, no126 derivative datasets, no model training. See [DATA-LICENSE.md](DATA-LICENSE.md).127128The full work — the stories, the voice, the complete argument — lives in the book:129**[open-and-async.com](https://open-and-async.com)**.130
Full transparency — inspect the skill content before installing.