Back to MCP directory
publicPublicdnsLocal runtime

Software Planning Tool

一个基于模型上下文协议(MCP)的软件开发规划工具,提供任务分解、进度跟踪和开发计划管理功能,帮助团队高效规划软件开发项目。

article

README

🚀 软件规划工具

本软件规划工具是一个基于模型上下文协议(MCP)的服务器,通过交互式、结构化的方法助力软件开发规划。它能够把复杂的软件项目拆解成可管理的任务,跟踪实施进度,还能维护详细的开发计划。

smithery badge

🚀 快速开始

通过以下步骤,你可以快速开启软件规划工具的使用之旅。

✨ 主要特性

  • 互动式计划会议:启动和管理开发规划会议。
  • 待办事项管理:创建、更新并跟踪开发任务。
  • 复杂度评分:为任务分配复杂度分数,以实现更好的估算。
  • 代码示例:在任务描述中包含相关代码片段。
  • 实施方案保存:保存并管理详细的实施方案。

📦 安装指南

通过 Smithery 安装

要通过 Smithery 自动安装软件规划工具的Claude Desktop版本,可使用以下命令:

npx -y @smithery/cli install @NightTrek/Software-planning-mcp --client claude

手动安装

  1. 克隆仓库。
  2. 安装依赖:
pnpm install
  1. 构建项目:
pnpm run build
  1. 添加到您的 MCP 设置配置文件(通常位于 ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json):
{
  "mcpServers": {
    "software-planning-tool": {
      "command": "node",
      "args": [
        "/path/to/your/built/directory"
      ],
      "executable": "main.js"
    }
  }
}

💻 使用示例

基础用法

启动会议

mcp start --server software-planning-tool

检查状态

mcp status --server software-planning-tool

停止服务

mcp stop --server software-planning-tool

高级用法

本工具的高级用法体现在其丰富的功能上,以下是一些常用功能的介绍:

  • 启动计划会议:开始新的开发规划会议。
  • 更新任务状态:跟踪任务进度并实时更新。
  • 复杂度评估:为每个任务分配适当的工作量和优先级。
  • 代码集成:直接在平台中嵌入相关代码片段以供参考。

📚 详细文档

项目结构

# 软件规划工具的文件结构如下:
src/
├── planning.ts        # 会议管理逻辑
├── tasks.ts          # 任务处理逻辑
└── types.ts          # TypeScript 类型定义

构建

pnpm run build

测试

使用 MCP 检查器测试所有功能:

pnpm run inspector

📄 许可证

本项目采用 MIT 许可证。


用❤️ 使用模型上下文协议打造

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client