mcp-server-change-plan
v1.0.0
Published
MCP server for managing change plans with multiple steps. Supports creating plans, adding steps with context, retrieving the next step to work on, and marking steps as complete. Enables methodical execution of complex task sequences by AI agents.
Readme
Change Plan
A Model Context Protocol server that provides advanced change plan management capabilities. This server enables LLMs to methodically execute complex task sequences by creating structured plans with steps, dependencies, priorities, and progress tracking.
Prerequisites
- Node.js v20 or higher
- Download Node.js
- Verify installation:
node --version
Common Issues & Solutions
Storage Issues
Storage Directory Errors
- Cause: Permission issues when creating storage directory or files
- Solution:
- Ensure the user running the server has write access to the directory
- For Docker setups, ensure proper volume mounting
- If persistent storage is required, configure a shared volume
Server Behavior
- The server persists change plans to a JSON file in a
storagedirectory - Plans are automatically loaded when the server starts
- Each step maintains creation and completion timestamps
- Dependencies between steps are enforced (steps with incomplete dependencies won't be returned as "next")
Components
Tools
create_change_plan
- Create a new change plan with multiple steps
- Input:
name(string): Name of the change plansteps(array): Array of step objects containing:title(string): Title of the stepdescription(string): Description of what needs to be donecontext(string, optional): Additional context for the stepdependsOn(string[], optional): Array of step IDs that must be completed before this steppriority(string, optional): Priority level: 'high', 'medium', or 'low'
get_change_plans
- Get a list of all change plans
- Input: None
get_change_plan
- Get details of a specific change plan by ID
- Input:
id(string): ID of the change plan to retrieve
search_change_plans
- Search for change plans by name and filter by completion status
- Input:
searchTerm(string, optional): Term to search for in plan namesstatus(string, optional): Filter by completion status: 'completed', 'in-progress', or 'all'
get_next_step
- Get the next incomplete step from a change plan, respecting dependencies and priorities
- Input:
planId(string): ID of the change plan
mark_step_complete
- Mark a specific step in a change plan as complete
- Input:
planId(string): ID of the change planstepId(string): ID of the step to mark as complete
add_step
- Add a new step to an existing change plan
- Input:
planId(string): ID of the change plantitle(string): Title of the stepdescription(string): Description of what needs to be donecontext(string, optional): Additional context for the stepdependsOn(string[], optional): Array of step IDs that must be completed before this steppriority(string, optional): Priority level: 'high', 'medium', or 'low'
update_step
- Update details of an existing step in a change plan
- Input:
planId(string): ID of the change planstepId(string): ID of the step to update- Various optional fields to update (title, description, context, dependsOn, priority, completed)
delete_change_plan
- Delete a change plan by ID
- Input:
id(string): ID of the change plan to delete
export_change_plan
- Export a specific change plan to JSON format for backup or sharing
- Input:
id(string): ID of the change plan to export
import_change_plan
- Import a change plan from JSON format
- Input:
data(string): JSON string containing the change plan data to importoverwrite(boolean, optional): Whether to overwrite an existing plan with the same ID
Usage with Claude Desktop
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:
Docker
{
"mcpServers": {
"change-plan": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"${localStoragePath}/change-plans:/app/storage",
"mcp/change-plan"
]
}
}
}NPX
{
"mcpServers": {
"change-plan": {
"command": "npx",
"args": ["-y", "mcp-server-change-plan"]
}
}
}Usage with VS Code
For quick installation, use one of the one-click install buttons below...
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).
Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.
Note that the
mcpkey is not needed in the.vscode/mcp.jsonfile.
{
"mcp": {
"servers": {
"change-plan": {
"command": "npx",
"args": ["-y", "mcp-server-change-plan"]
}
}
}
}For Docker installation:
{
"mcp": {
"servers": {
"change-plan": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"${localStoragePath}/change-plans:/app/storage",
"mcp/change-plan"
]
}
}
}
}License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
