Software Planning Tool
A tool for structured software development planning, helping to break down projects into tasks and track progress.
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
- Clone the repository
- Install dependencies:
pnpm install
- Build the project:
pnpm run build
- 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:
- Start a planning session:
await client.callTool("software-planning-tool", "start_planning", {
goal: "Create a React-based dashboard application"
});
- 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
`
});
- Update todo status:
await client.callTool("software-planning-tool", "update_todo_status", {
todoId: todo.id,
isComplete: true
});
- 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
Server Terkait
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Local MCP Test
A test server for local MCP development and setup.
Test Code Generator
Generates Vitest test code from JSON specifications using boundary value analysis and equivalence partitioning.
Wopee MCP
AI testing agents for web apps โ dispatch test runs, analysis crawls, and AI agent tests, fetch artifacts and project status
Croft Laravel
A local MCP server for Laravel developers to boost productivity with artisan commands.
๊ณต๊ณต API ์ฐ๋ MCP ์ํ
Integrates the Korea Meteorological Administration's public weather API to provide climate data.
Manim MCP Server
Executes Manim Python scripts to generate and return rendered video animations.
Deep Code Reasoning MCP Server
Performs complementary code analysis by combining Claude Code and Google's Gemini AI.
PyPI Query MCP Server
A server to query the Python Package Index (PyPI) for package information, dependencies, and compatibility.
ๅณๆขฆAIๅคๆจกๆMCP
A multimodal generation service using Volcengine Jimeng AI for image generation, video generation, and image-to-video conversion.
Sequa MCP
A proxy that connects local STDIO with remote MCP servers, enabling IDEs to use MCP without extra infrastructure.