# Software-planning-mcp **Repository Path**: szp_gl/Software-planning-mcp ## Basic Information - **Project Name**: Software-planning-mcp - **Description**: Software Planning Tool 是一款基于MCP的软件开发规划工具,通过交互式方法帮助团队拆分复杂项目、跟踪进度并维护详细计划。 ‌ 核心功能 ‌交互式规划会话‌:支持团队协作制定开发目标,实时协作规划项目路径 ‌任务管理‌:可创建、更新、跟踪开发任务,支持复杂度评分(0-10分)和代码示例嵌入 ‌实施计划管理‌:保存详细方案确保每个阶段任务有序推进 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-01 - **Last Updated**: 2025-08-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Software Planning Tool 🚀 [![smithery badge](https://smithery.ai/badge/@NightTrek/Software-planning-mcp)](https://smithery.ai/server/@NightTrek/Software-planning-mcp) A Model Context Protocol (MCP) server designed to facilitate software development planning through an interactive, structured approach. This tool helps break down complex software projects into manageable tasks, track implementation progress, and maintain detailed development plans. Software Planning Tool MCP server ## Features ✨ - **Interactive Planning Sessions**: Start and manage development planning sessions - **Todo Management**: Create, update, and track development tasks - **Complexity Scoring**: Assign complexity scores to tasks for better estimation - **Code Examples**: Include relevant code snippets in task descriptions - **Implementation Plans**: Save and manage detailed implementation plans ## Installation 🛠️ ### Installing via Smithery To install Software Planning Tool for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@NightTrek/Software-planning-mcp): ```bash npx -y @smithery/cli install @NightTrek/Software-planning-mcp --client claude ``` ### Manual Installation 1. Clone the repository 2. Install dependencies: ```bash pnpm install ``` 3. Build the project: ```bash pnpm run build ``` 4. Add to your MCP settings configuration (typically located at `~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`): ```json { "mcpServers": { "software-planning-tool": { "command": "node", "args": [ "/path/to/software-planning-tool/build/index.js" ], "disabled": false, "autoApprove": [] } } } ``` ## Available Tools 🔧 ### start_planning Start a new planning session with a specific goal. ```typescript { goal: string // The software development goal to plan } ``` ### add_todo Add a new todo item to the current plan. ```typescript { title: string, // Title of the todo item description: string, // Detailed description complexity: number, // Complexity score (0-10) codeExample?: string // Optional code example } ``` ### get_todos Retrieve all todos in the current plan. ```typescript // No parameters required ``` ### update_todo_status Update the completion status of a todo item. ```typescript { todoId: string, // ID of the todo item isComplete: boolean // New completion status } ``` ### save_plan Save the current implementation plan. ```typescript { plan: string // The implementation plan text } ``` ### remove_todo Remove a todo item from the current plan. ```typescript { todoId: string // ID of the todo item to remove } ``` ## Example Usage 📝 Here's a complete example of using the software planning tool: 1. Start a planning session: ```typescript await client.callTool("software-planning-tool", "start_planning", { goal: "Create a React-based dashboard application" }); ``` 2. Add a todo item: ```typescript const todo = await client.callTool("software-planning-tool", "add_todo", { title: "Set up project structure", description: "Initialize React project with necessary dependencies", complexity: 3, codeExample: ` npx create-react-app dashboard cd dashboard npm install @material-ui/core @material-ui/icons ` }); ``` 3. Update todo status: ```typescript await client.callTool("software-planning-tool", "update_todo_status", { todoId: todo.id, isComplete: true }); ``` 4. Save the implementation plan: ```typescript await client.callTool("software-planning-tool", "save_plan", { plan: ` # Dashboard Implementation Plan ## Phase 1: Setup (Complexity: 3) - Initialize React project - Install dependencies - Set up routing ## Phase 2: Core Features (Complexity: 5) - Implement authentication - Create dashboard layout - Add data visualization components ` }); ``` ## Development 🔨 ### Project Structure ``` software-planning-tool/ ├── src/ │ ├── index.ts # Main server implementation │ ├── prompts.ts # Planning prompts and templates │ ├── storage.ts # Data persistence │ └── types.ts # TypeScript type definitions ├── build/ # Compiled JavaScript ├── package.json └── tsconfig.json ``` ### Building ```bash pnpm run build ``` ### Testing Test all features using the MCP inspector: ```bash pnpm run inspector ``` ## License 📄 MIT --- Made with ❤️ using the Model Context Protocol