🐱 Medium-horizon agent planning MCP server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update README.md

+41 -2
+41 -2
README.md
··· 1 - \# 9plan 1 + # 9plan 2 + 3 + MCP server providing session-scoped work queues for AI agent task sequencing. 4 + 5 + ## Installation 6 + 7 + **Prerequisites:** Node.js 22.5.0+, pnpm 8 + 9 + ```bash 10 + pnpm install 11 + pnpm build 12 + ``` 13 + 14 + ## Configuration 15 + 16 + Add to your MCP settings (Claude Code or Claude Desktop): 17 + 18 + ```json 19 + { 20 + "mcpServers": { 21 + "9plan": { 22 + "type": "stdio", 23 + "command": "node", 24 + "args": ["/path/to/9plan/dist/index.js"], 25 + "env": { 26 + "NINEPLAN_LOG_LEVEL": "info" 27 + } 28 + } 29 + } 30 + } 31 + ``` 2 32 33 + ## Quick Start 3 34 35 + Use the `bootstrap` prompt to set up a new session: 4 36 5 - Design: `docs/design.md` 37 + ``` 38 + /bootstrap 39 + ``` 6 40 41 + The prompt will guide you through clarifying requirements, decomposing the task into plans, and starting work. 7 42 43 + You can also provide an initial task description: 8 44 45 + ``` 46 + /bootstrap task="Build a CLI note-taking app" 47 + ```