···11-\# 9plan
11+# 9plan
22+33+MCP server providing session-scoped work queues for AI agent task sequencing.
44+55+## Installation
66+77+**Prerequisites:** Node.js 22.5.0+, pnpm
88+99+```bash
1010+pnpm install
1111+pnpm build
1212+```
1313+1414+## Configuration
1515+1616+Add to your MCP settings (Claude Code or Claude Desktop):
1717+1818+```json
1919+{
2020+ "mcpServers": {
2121+ "9plan": {
2222+ "type": "stdio",
2323+ "command": "node",
2424+ "args": ["/path/to/9plan/dist/index.js"],
2525+ "env": {
2626+ "NINEPLAN_LOG_LEVEL": "info"
2727+ }
2828+ }
2929+ }
3030+}
3131+```
2323333+## Quick Start
3343535+Use the `bootstrap` prompt to set up a new session:
43655-Design: `docs/design.md`
3737+```
3838+/bootstrap
3939+```
6404141+The prompt will guide you through clarifying requirements, decomposing the task into plans, and starting work.
7424343+You can also provide an initial task description:
8444545+```
4646+/bootstrap task="Build a CLI note-taking app"
4747+```