- Explore MCP Servers
- mcp-server-change-plan
Mcp Server Change Plan
What is Mcp Server Change Plan
mcp-server-change-plan is a Model Context Protocol server designed to manage complex change plans. It allows LLMs to execute intricate task sequences by creating structured plans that include steps, dependencies, priorities, and progress tracking.
Use cases
Use cases include managing software deployment processes, coordinating complex project tasks, automating workflows, and ensuring that tasks are completed in the correct order based on dependencies.
How to use
To use mcp-server-change-plan, ensure you have Node.js v20 or higher installed. Create a change plan using the ‘create_change_plan’ tool, specifying the plan name, steps, dependencies, and priorities. You can retrieve existing plans with ‘get_change_plans’ or ‘get_change_plan’ by ID, and search for plans using ‘search_change_plans’.
Key features
Key features include the ability to create detailed change plans with multiple steps, enforce dependencies between steps, track progress with timestamps, and persist plans in a JSON file for easy access and management.
Where to use
mcp-server-change-plan can be utilized in project management, software development, and any domain requiring structured task execution and change management, particularly in environments where LLMs are employed.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Mcp Server Change Plan
mcp-server-change-plan is a Model Context Protocol server designed to manage complex change plans. It allows LLMs to execute intricate task sequences by creating structured plans that include steps, dependencies, priorities, and progress tracking.
Use cases
Use cases include managing software deployment processes, coordinating complex project tasks, automating workflows, and ensuring that tasks are completed in the correct order based on dependencies.
How to use
To use mcp-server-change-plan, ensure you have Node.js v20 or higher installed. Create a change plan using the ‘create_change_plan’ tool, specifying the plan name, steps, dependencies, and priorities. You can retrieve existing plans with ‘get_change_plans’ or ‘get_change_plan’ by ID, and search for plans using ‘search_change_plans’.
Key features
Key features include the ability to create detailed change plans with multiple steps, enforce dependencies between steps, track progress with timestamps, and persist plans in a JSON file for easy access and management.
Where to use
mcp-server-change-plan can be utilized in project management, software development, and any domain requiring structured task execution and change management, particularly in environments where LLMs are employed.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
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
storage
directory - 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
mcp
key is not needed in the.vscode/mcp.json
file.
{
"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.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.