Software Planning Tool MCP Server

Facilitates software development planning through an interactive and structured approach.

Local serverstdioTypeScript 394

What is the Software Planning Tool MCP server?

If you already use Software Planning Tool, the software planning tool mcp server is the piece that lets your assistant work with it directly. Facilitates software development planning through an interactive and structured approach.

What the server does

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.

  • 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

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • 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
  • 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 }
  • Building — The Building tool exposed by this server
  • Testing — Test all features using the MCP inspector: bash pnpm run inspector

Installation

Installation goes through your MCP client rather than a global install: point it at @smithery/cli on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Software Planning Tool's toolset — start_planning, add_todo, get_todos and 5 more — is a fair guide to whether it matches your workflow. It is maintained by NightTrek; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
start_planningStart a new planning session with a specific goal. typescript { goal: string // The software development goal to plan }
add_todoAdd 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
get_todosRetrieve all todos in the current plan. typescript // No parameters required
update_todo_statusUpdate the completion status of a todo item. typescript { todoId: string, // ID of the todo item isComplete: boolean // New completion status }
save_planSave the current implementation plan. typescript { plan: string // The implementation plan text }
remove_todoRemove a todo item from the current plan. typescript { todoId: string // ID of the todo item to remove }
BuildingThe Building tool exposed by this server.
TestingTest all features using the MCP inspector: bash pnpm run inspector

How to install the Software Planning Tool MCP server

{
  "mcpServers": {
    "software-planning-tool": {
      "command": "node",
      "args": [
        "/path/to/software-planning-tool/build/index.js"
      ],
      "disabled": false,
      "autoApprove": []
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Software Planning Tool to start planning.
  • Use Software Planning Tool to add todo.
  • Use Software Planning Tool to get todos.

Frequently asked questions

The Software Planning Tool is an interactive Model Context Protocol (MCP) server designed to facilitate software development planning. It helps break down complex projects into manageable tasks, track progress, and maintain detailed development plans.