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

azure-devops-release-mcp

v1.0.6

Published

MCP server for analyzing Azure DevOps classic release pipelines

Downloads

336

Readme

azure-devops-release-mcp

MCP server for analyzing Azure DevOps classic release pipelines via the VSRM REST API (7.1).

Complements the official @azure-devops/mcp which does not cover classic releases.

Tools

| Tool | Description | |---|---| | list_release_definitions | List classic release definitions in a project | | get_release_definition | Get full definition details (stages, artifacts, triggers, approvals) | | list_releases | List releases with filters (definition, status, date range) | | get_release | Get full release details (environments, deployment steps, timing) | | compare_environments | Compare deployed versions across environments |

Installation

This package is published to a private Azure Artifacts npm feed. It is only accessible to members of the DEPTHCH organisation.

1. Configure npm registry

Add a .npmrc file in your user profile (~/.npmrc) or in the project consuming the MCP:

registry=https://pkgs.dev.azure.com/DEPTHCH/MCP/_packaging/npm-internal/npm/registry/
always-auth=true

2. Authenticate

Install the Azure DevOps npm auth helper and generate your credentials:

npm install -g vsts-npm-auth
vsts-npm-auth -config .npmrc

This will open a browser window for Azure DevOps authentication and store tokens in your user-level .npmrc.

3. Install the package

npm install -g azure-devops-release-mcp

Development (from source)

npm install
npm run build

Publishing a new version

# Bump version in package.json, then:
npm publish

The .npmrc at the project root already points to the npm-internal feed.

Authentication

Supports the same authentication methods as the official Azure DevOps MCP:

| Mode | Flag | Description | |---|---|---| | Interactive (default) | -a interactive | Browser-based MSAL login with device code flow | | PAT | -a envvar | Personal Access Token via ADO_MCP_AUTH_TOKEN env var | | Azure CLI | -a azcli | Uses az login credentials |

Usage

CLI

# Interactive auth (opens browser)
node dist/index.js myorg

# PAT auth
ADO_MCP_AUTH_TOKEN=your-pat node dist/index.js myorg -a envvar

# Azure CLI auth
node dist/index.js myorg -a azcli

# Multi-tenant
node dist/index.js myorg -a interactive -t your-tenant-id

VS Code MCP Configuration

Once authenticated to the feed (see Installation above), add to .vscode/mcp.json:

{
  "inputs": [
    {
      "id": "ado_org",
      "type": "promptString",
      "description": "Azure DevOps organization name"
    }
  ],
  "servers": {
    "azure-devops-release": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "azure-devops-release-mcp",
        "${input:ado_org}",
        "-a",
        "interactive"
      ],
      "env": {
        "LOG_LEVEL": "info"
      }
    }
  }
}

Note: npx will download the package from the private feed as long as the user's ~/.npmrc is configured and authenticated.

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "azure-devops-release": {
      "command": "node",
      "args": ["/path/to/dist/index.js", "myorg", "-a", "envvar"],
      "env": {
        "ADO_MCP_AUTH_TOKEN": "your-pat-here"
      }
    }
  }
}

Environment Variables

| Variable | Description | |---|---| | ADO_MCP_AUTH_TOKEN | Personal Access Token (required for -a envvar) | | LOG_LEVEL | Logging level: debug, info, warn, error (default: info) |

Required PAT Scopes

When using PAT authentication, the token needs the Release (Read) scope (vso.release).

Development

# Run in development mode (tsx, no build needed)
npm run dev -- myorg -a envvar

# Build
npm run build

# Run built version
npm start -- myorg -a envvar