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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@securedevops/mcp-devops-plan

v0.1.80

Published

A Model Context Protocol (MCP) server for DevOps Plan work item management

Readme

MCP DevOps Plan Server

A Model Context Protocol (MCP) server implementation for DevOps Plan, enabling work item management through standardized MCP clients.

Features

  • Retrieve applications and projects from Plan
  • Get available components and work item types
  • Create, retrieve, and delete work items
  • Filter work items by type and owner

Warranties

This MCP server is provided "as is" without any warranties. It is designed to work with the DevOps Plan system and may require specific configurations to function correctly. Users are responsible for ensuring compatibility with their Plan instance. This server provides data destructive functionality, the author is not liable for any data loss due to use of this MCP capability.

Example Use Cases

1. Setting Up a New Project Sprint

Scenario: You're a project manager starting a new sprint and need to create multiple work items for your team.

Steps:

  1. "Get me all available applications in Plan"
  2. "Show me the projects in the 'WebApp Development' application"
  3. "What work item types are available in the 'Customer Portal' project?"
  4. "Create a new Epic titled 'User Authentication System' in the Customer Portal project"
  5. "Create three tasks: 'Design login UI', 'Implement OAuth integration', and 'Add password reset functionality'"

Benefits: Quickly set up organized work items for sprint planning and team assignment.

2. Sprint Review and Cleanup

Scenario: At the end of a sprint, you need to review completed work and clean up obsolete items.

Steps:

  1. "Show me all work items in the 'Mobile App' project"
  2. "Filter work items by type 'Bug' to see what issues were resolved"
  3. "Show me work items assigned to 'john.doe' to review his contributions"
  4. "Delete the work item with ID '12345' as it's no longer relevant"
  5. "Create a summary report of completed vs remaining work items"

Benefits: Maintain clean project state and generate insights for retrospectives.

3. Cross-Team Dependency Management

Scenario: You're coordinating between frontend and backend teams and need to track dependencies.

Steps:

  1. "Get all work items in the 'E-commerce Platform' project"
  2. "Filter by work item type 'Story' to see feature requirements"
  3. "Create a new task 'API endpoint for user profiles' in the 'Backend Services' component"
  4. "Create a dependent task 'Integrate user profile API' in the 'Frontend' component"
  5. "Check work items assigned to backend team members to see their current workload"

Benefits: Coordinate cross-functional work and ensure proper dependency tracking.

Configuration

The server requires configuration for authentication and connection to your Plan instance. You can provide configuration in several ways:

Quick Setup (Recommended)

Run the interactive setup script:

npm run setup

This will prompt you for your configuration values and create a .env file automatically.

Option 1: Environment Variables

Set the following environment variables:

export PLAN_ACCESS_TOKEN="your_base64_encoded_token_here"
export PLAN_SERVER_URL="https://your-plan-server.com/plan"
export PLAN_TEAMSPACE_ID="your-teamspace-id-here"

Option 2: Command Line Arguments

Pass configuration as command line arguments:

node src/lib/server.js --token "your_token" --server-url "https://your-server.com/plan" --teamspace-id "your-teamspace-id"

Option 3: Environment File

Copy .env.example to .env and fill in your values:

cp .env.example .env
# Edit .env with your actual configuration values

Installation

Option 1: Direct NPX Usage (Recommended)

You can run the MCP server directly without installation:

npx @securedevops/mcp-devops-plan --token "your_token" --server-url "https://your-server.com/plan" --teamspace-id "your-teamspace-id"

Option 2: Global Installation

npm install -g @securedevops/mcp-devops-plan
mcp-devops-plan --token "your_token" --server-url "https://your-server.com/plan" --teamspace-id "your-teamspace-id"

Option 3: Local Development

git clone https://github.com/securedevops/mcp-devops-plan.git
cd mcp-devops-plan
npm install
npm run setup  # Interactive configuration setup
npm start      # Start the MCP server

Use with Claude Desktop

Option 1: NPX (Recommended)

Add the following to your Claude Desktop MCP configuration:

{
  "mcpServers": {
    "devops-plan": {
      "command": "npx",
      "args": [
        "@securedevops/mcp-devops-plan",
        "--token", "your_token_here",
        "--server-url", "https://your-server.com/plan",
        "--teamspace-id", "your_teamspace_id"
      ]
    }
  }
}

Option 2: Environment Variables with NPX

{
  "mcpServers": {
    "devops-plan": {
      "command": "npx",
      "args": ["@securedevops/mcp-devops-plan"],
      "env": {
        "PLAN_ACCESS_TOKEN": "your_token_here",
        "PLAN_SERVER_URL": "https://your-server.com/plan",
        "PLAN_TEAMSPACE_ID": "your_teamspace_id"
      }
    }
  }
}

Option 3: Local Installation

Add the following to your Claude Desktop MCP configuration:

{
  "mcpServers": {
    "devops-plan": {
      "command": "node",
      "args": ["/path/to/mcp-devops-plan/src/lib/server.js"],
      "env": {
        "PLAN_ACCESS_TOKEN": "your_token_here",
        "PLAN_SERVER_URL": "https://your-server.com/plan",
        "PLAN_TEAMSPACE_ID": "your_teamspace_id"
      }
    }
  }
}

Or with command line arguments:

{
  "mcpServers": {
    "devops-plan": {
      "command": "node",
      "args": [
        "/path/to/mcp-devops-plan/src/lib/server.js",
        "--token", "your_token_here",
        "--server-url", "https://your-server.com/plan",
        "--teamspace-id", "your_teamspace_id"
      ]
    }
  }
}

Usage

The MCP DevOps Plan server provides the following tools for interacting with DevOps Plan:

Available Tools

1. get_applications

Purpose: Retrieves all applications from the Plan system Parameters: None Usage: Use this to get a list of all available applications in your Plan instance. This is typically the first step to understand what applications you can work with.

2. get_available_projects

Purpose: Get the list of projects in Plan for a given application Parameters:

  • application (string): Name of the plan application Usage: Once you have an application name, use this to see all projects within that application.

3. get_available_components

Purpose: Get the list of components for a project in Plan for a given application Parameters:

  • application (string): Name of the application
  • projectId (string): ID of the project Usage: Retrieve available components within a specific project. Components are optional organizational units for work items.

4. get_available_workitem_types

Purpose: Get the available work item types for a project in Plan for a given application Parameters:

  • application (string): Name of the application
  • projectId (string): ID of the project Usage: Get the list of work item types (e.g., Task, Bug, Story) available in a specific project. This is needed before creating work items.

5. create_work_item

Purpose: Creates a new work item in Plan Parameters:

  • component (string, optional): An optional component name if any are available in the project
  • title (string): Title of the work item
  • description (string): Description of the work item
  • workItemType (string): Type of the work item from the list of available work item types
  • application (string): Name of the application
  • projectId (string): ID of the project Usage: Create new work items like tasks, bugs, or stories in a specific project.

6. get_work_items

Purpose: Retrieves all work items for a given application, can filter by work item type and specific owner Parameters:

  • applicationName (string): Name of the application
  • projectId (string): ID of the project
  • workitemType (string, optional): Type of the work item to filter by, if any
  • owner (string, optional): Filter the work items by owner, if any Usage: List existing work items with optional filtering. Use this to see current work items, track progress, or find specific items.

7. delete_work_item

Purpose: Deletes a work item in Plan Parameters:

  • dbid (string): The dbid field from the work item to identify it (this is the first field returned for each work item in the get_work_items tool)
  • application (string): Name of the application Usage: Remove work items that are no longer needed. The dbid can be obtained from the get_work_items tool output.