
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
mcp-server-change-plan
Advanced tools
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.
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.
node --versionStorage Directory Errors
storage directorycreate_change_plan
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_change_plan
id (string): ID of the change plan to retrievesearch_change_plans
searchTerm (string, optional): Term to search for in plan namesstatus (string, optional): Filter by completion status: 'completed', 'in-progress', or 'all'get_next_step
planId (string): ID of the change planmark_step_complete
planId (string): ID of the change planstepId (string): ID of the step to mark as completeadd_step
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
planId (string): ID of the change planstepId (string): ID of the step to updatedelete_change_plan
id (string): ID of the change plan to deleteexport_change_plan
id (string): ID of the change plan to exportimport_change_plan
data (string): JSON string containing the change plan data to importoverwrite (boolean, optional): Whether to overwrite an existing plan with the same IDTo use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:
{
"mcpServers": {
"change-plan": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"${localStoragePath}/change-plans:/app/storage",
"mcp/change-plan"
]
}
}
}
{
"mcpServers": {
"change-plan": {
"command": "npx",
"args": ["-y", "mcp-server-change-plan"]
}
}
}
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"
]
}
}
}
}
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.
FAQs
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.
We found that mcp-server-change-plan demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.