npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

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

  1. Node.js v20 or higher

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 plan
      • steps (array): Array of step objects containing:
        • title (string): Title of the step
        • description (string): Description of what needs to be done
        • context (string, optional): Additional context for the step
        • dependsOn (string[], optional): Array of step IDs that must be completed before this step
        • priority (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 names
      • status (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 plan
      • stepId (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 plan
      • title (string): Title of the step
      • description (string): Description of what needs to be done
      • context (string, optional): Additional context for the step
      • dependsOn (string[], optional): Array of step IDs that must be completed before this step
      • priority (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 plan
      • stepId (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 import
      • overwrite (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...

Install with NPX in VS Code Install with NPX in VS Code Insiders

Install with Docker in VS Code Install with Docker in VS Code Insiders

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.