lukeocodes
MCP Serverlukeocodespublic

mcp server change plan

一个提供高级变更计划管理功能的 Model Context Protocol 服务器。

Repository Info

1
Stars
0
Forks
1
Watchers
0
Issues
JavaScript
Language
MIT License
License

About This Server

一个提供高级变更计划管理功能的 Model Context Protocol 服务器。

Model Context Protocol (MCP) - This server can be integrated with AI applications to provide additional context and capabilities, enabling enhanced AI interactions and functionality.

Documentation

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
    • 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 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.

Quick Start

1

Clone the repository

git clone https://github.com/lukeocodes/mcp-server-change-plan
2

Install dependencies

cd mcp-server-change-plan
npm install
3

Follow the documentation

Check the repository's README.md file for specific installation and usage instructions.

Repository Details

Ownerlukeocodes
Repomcp-server-change-plan
LanguageJavaScript
LicenseMIT License
Last fetched8/10/2025

Recommended MCP Servers

💬

Discord MCP

Enable AI assistants to seamlessly interact with Discord servers, channels, and messages.

integrationsdiscordchat
🔗

Knit MCP

Connect AI agents to 200+ SaaS applications and automate workflows.

integrationsautomationsaas
🕷️

Apify MCP Server

Deploy and interact with Apify actors for web scraping and data extraction.

apifycrawlerdata
🌐

BrowserStack MCP

BrowserStack MCP Server for automated testing across multiple browsers.

testingqabrowsers

Zapier MCP

A Zapier server that provides automation capabilities for various apps.

zapierautomation