Software Planning Tool

by NightTrek

Integrations

  • Provides tools for planning React-based application development, including project structure setup, component planning, and implementation tracking specifically for React applications.

Software Planning Tool 🚀

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.

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:

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

Manual Installation

  1. Clone the repository
  2. Install dependencies:
pnpm install
  1. Build the project:
pnpm run build
  1. Add to your MCP settings configuration (typically located at ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.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.

{ goal: string // The software development goal to plan }

add_todo

Add a new todo item to the current plan.

{ 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.

// No parameters required

update_todo_status

Update the completion status of a todo item.

{ todoId: string, // ID of the todo item isComplete: boolean // New completion status }

save_plan

Save the current implementation plan.

{ plan: string // The implementation plan text }

remove_todo

Remove a todo item from the current plan.

{ 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:
await client.callTool("software-planning-tool", "start_planning", { goal: "Create a React-based dashboard application" });
  1. Add a todo item:
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 ` });
  1. Update todo status:
await client.callTool("software-planning-tool", "update_todo_status", { todoId: todo.id, isComplete: true });
  1. Save the implementation plan:
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

pnpm run build

Testing

Test all features using the MCP inspector:

pnpm run inspector

License 📄

MIT


Made with ❤️ using the Model Context Protocol

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Facilitates interactive software development planning by managing tasks, tracking progress, and creating detailed implementation plans through the Model Context Protocol.

  1. Features ✨
    1. Installation 🛠️
      1. Installing via Smithery
      2. Manual Installation
    2. Available Tools 🔧
      1. start_planning
      2. add_todo
      3. get_todos
      4. update_todo_status
      5. save_plan
      6. remove_todo
    3. Example Usage 📝
      1. Development 🔨
        1. Project Structure
        2. Building
        3. Testing
      2. License 📄

        Related MCP Servers

        • A
          security
          A
          license
          A
          quality
          Facilitates interactive feature discussions with AI guidance, maintaining context and providing intelligent recommendations for implementation, architecture, and best practices in software development.
          Last updated -
          2
          1
          JavaScript
          MIT License
          • Apple
        • -
          security
          F
          license
          -
          quality
          Facilitates project management with the Linear API via the Model Context Protocol, allowing users to manage initiatives, projects, issues, and their relationships through features like creation, viewing, updating, and prioritization.
          Last updated -
          324
          4
          TypeScript
        • A
          security
          F
          license
          A
          quality
          Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
          Last updated -
          7
          64
          1
          JavaScript
          • Apple
        • -
          security
          F
          license
          -
          quality
          Provides software development planning tools to help users create implementation plans and manage todo items.
          Last updated -
          Python
          • Linux
          • Apple

        View all related MCP servers

        ID: a35c7qc7ie