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

@pratul397/ddm-migration-advisor

v1.0.1

Published

MCP server that guides Workspace ONE UEM admins through Apple DDM migration — classifies profiles, generates declarations, and provides a step-by-step migration plan via Claude.

Readme

DDM Migration Advisor — MCP Server

npm

A locally-run MCP server that turns Claude Desktop or Claude Code into a guided DDM migration advisor for Workspace ONE UEM admins.

Claude walks the admin through four steps:

  1. Inventory — load all profiles across Organisation Groups
  2. Classify — bucket profiles into Deprecated Urgent / Direct DDM / Legacy Wrapper / Keep as Legacy
  3. Generate Declarations — produce valid, deployable DDM JSON per profile
  4. Summary — priority action list with key DDM warnings

All data is realistic dummy data — no Workspace ONE API calls are made. Zero configuration required.


Requirements

  • Node.js 18+ — check with node --version
  • Claude Desktop or Claude Code (MCP-enabled)

Claude Desktop setup

Open your Claude Desktop config file:

open ~/Library/Application\ Support/Claude/claude_desktop_config.json

Add the ddm-migration-advisor entry inside mcpServers:

{
  "mcpServers": {
    "ddm-migration-advisor": {
      "command": "npx",
      "args": ["-y", "@pratul397/ddm-migration-advisor"]
    }
  }
}

Restart Claude Desktop. You should see ddm-migration-advisor appear in the MCP tools list (hammer icon).


Claude Code setup

Run this in your terminal:

claude mcp add ddm-migration-advisor npx -- -y @pratul397/ddm-migration-advisor

Usage

Once installed, open Claude and say:

"Help me plan my DDM migration"

Claude will call start_migration_assessment and guide you through all four steps automatically.

Other prompts that work well

| What you want | What to say | |---|---| | See all profiles | "Show me my profile inventory" | | See only deprecated profiles | "Which profiles are deprecated?" | | Filter by platform | "Classify my macOS profiles" | | Generate a specific declaration | "Generate the DDM declaration for Passcode Policy — Corporate Devices" | | See the full plan | "Give me the full migration summary" | | Focus on one OG | "Classify profiles in the Corporate / macOS OG" |


Migration buckets

| Bucket | Label | What it means | Action | |---|---|---|---| | 🔴 A | Deprecated — Urgent | Stops working on OS 26. Hard Apple deadline. | Migrate before OS 26 ships. | | 🟡 B | Direct DDM | Apple has a native DDM declaration equivalent. | Convert natively — clean path. | | 🟠 C | Legacy Wrapper | No native DDM equivalent. | Wrap in legacy-profile declaration. | | 🟢 D | Keep as Legacy | No DDM path exists yet. | Keep as standard MDM profile. |


Available MCP tools

| Tool | What it does | |---|---| | start_migration_assessment | Kicks off the guided flow with a tenant overview and bucket definitions | | get_tenant_inventory | Returns all 28 profiles across 10 OGs | | classify_profiles | Buckets all profiles into A / B / C / D with per-payload detail | | generate_ddm_declaration | Returns valid DDM JSON for a named profile | | get_migration_summary | Full summary: counts, complexity, priority action list, DDM warnings |


Important notes on generated declarations

  • Identifier and ServerToken are both "PLACEHOLDER" — replace with real values before deploying to devices.
  • DDM is a one-way door — once a configuration domain is DDM-managed, legacy MDM profiles and commands for that domain are silently ignored on that device.
  • Always pilot first — deploy to a test Smart Group, validate status-channel reporting, then scale.

Built by

Pratul Mathur — Product Line Manager, Apple Platform, Omnissa.
Part of the DDM Migration Advisor concept for Workspace ONE UEM.