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

jdk-migration-mcp

v0.3.48

Published

MCP server that orchestrates Java JDK 6/8 → 21 migrations with human-in-the-loop gates

Downloads

7,481

Readme

jdk-migration-mcp

MCP server that orchestrates Java JDK 6/8 → 21 migrations with human-in-the-loop approval gates.

What it does

  • Scans your Java project and identifies all incompatibilities with JDK 21
  • Generates a phased migration plan (6 phases) with risk classification
  • Guides each phase with automated analysis and manual review gates
  • Tracks approvals, generates an HTML audit report

Requirements

  • Node.js >= 20
  • Java project using Maven or Gradle
  • Git available in PATH

Installation

Claude Code (recommended)

Add to your ~/.claude/settings.json:

{
  "mcpServers": {
    "jdk-migration": {
      "command": "npx",
      "args": ["-y", "jdk-migration-mcp"]
    }
  }
}

Or install globally:

npm install -g jdk-migration-mcp

Then configure:

{
  "mcpServers": {
    "jdk-migration": {
      "command": "jdk-migration-mcp"
    }
  }
}

Usage

With the MCP active in Claude Code, use natural language:

Execute a descoberta do projeto neste diretório.
Construa o plano de migração.
Aprovar gate 0 como <Seu Nome>.
Executar fase 1.

Available tools

| Tool | Description | |---|---| | discover_project | Scans the Java project — run this first | | build_migration_plan | Generates the phased migration plan | | execute_phase | Applies a migration phase (requires gate token) | | approve_gate | Records human approval and issues the next gate token | | get_phase_status | Returns current status of all 6 phases | | rollback_phase | Rolls back a phase via Git | | generate_report | Generates an HTML audit report |

Migration phases

| Phase | Name | Automation | |---|---|---| | 0 | Discovery & Baseline | High | | 1 | Infrastructure & Build | High | | 2 | Language Modernization | High | | 3 | Jakarta Namespace & Frameworks | Conditional | | 4 | Assisted Semantic Refactoring | Conditional | | 5 | Final Validation & Cutover | High |

Detected incompatibilities

  • javax.xml.bindjakarta.xml.bind (removed in JDK 11, JEP-320)
  • Thread.stop()interrupt() (removed in JDK 20)
  • Object.finalize()Cleaner / try-with-resources (JEP-421)
  • Nashorn ScriptEngine (removed in JDK 15, JEP-372)
  • SecurityManager (removed in JDK 24, JEP-486)
  • java.util.Observable/Observer (deprecated JDK 9)

License

MIT — Matheus Vieira