The Software Planning Tool is a Model Context Protocol (MCP) server that helps with software development planning through an interactive approach. It breaks down complex projects into manageable tasks, tracks implementation progress, and maintains detailed development plans - all in a structured format that integrates with AI assistants.
For Claude Desktop users, you can install the Software Planning Tool automatically:
npx -y @smithery/cli install @NightTrek/Software-planning-mcp --client claude
If you prefer to install manually:
pnpm install
pnpm run build
~/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": []
}
}
}
The Software Planning Tool provides several functions to manage development planning. Here's how to use each one:
To begin planning for a new software project:
await client.callTool("software-planning-tool", "start_planning", {
goal: "Create a React-based dashboard application"
});
Add new tasks to your plan with detailed information:
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
`
});
Retrieve all tasks in your current plan:
const todos = await client.callTool("software-planning-tool", "get_todos");
Mark tasks as complete or incomplete:
await client.callTool("software-planning-tool", "update_todo_status", {
todoId: todo.id,
isComplete: true
});
Remove a task from your plan:
await client.callTool("software-planning-tool", "remove_todo", {
todoId: todo.id
});
Save your complete implementation plan with structured phases and details:
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
`
});
Here's a typical workflow using all the major features:
This structured approach ensures your software development process is well-organized, with clear tasks and implementation details that both developers and stakeholders can understand.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.