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

mcp-java-backend-suite

v0.1.0

Published

Complete MCP suite for Java backend developers — database analysis, JVM diagnostics, migration risk, Spring Boot actuator analysis, and Redis diagnostics

Readme

MCP Java Backend Suite

Complete MCP toolkit for Java backend developers. 35 tools across 5 servers — install once, configure once.

What's Included

| Server | Tools | What It Does | |--------|-------|-------------| | mcp-db-analyzer | 9 | PostgreSQL, MySQL, SQLite schema analysis, index optimization, query plans, slow queries, connections, table relationships | | mcp-jvm-diagnostics | 6 | Thread dump analysis, deadlock detection, GC log analysis, heap histogram analysis, heap diff comparison | | mcp-migration-advisor | 6 | Flyway/Liquibase migration risk analysis, lock detection, data loss detection, rollback generation | | mcp-spring-boot-actuator | 7 | Health, metrics, environment, beans, startup, and cache analysis | | mcp-redis-diagnostics | 7 | Memory fragmentation, slowlog analysis, client connections, keyspace health, unified performance report |

Why the Suite?

Installing 5 MCP servers individually means 5 packages to manage, 5 config blocks to write, and 5 things to keep updated. The suite gives you everything in one install:

  • DB Analyzer — database schema analysis, index optimization, query plans, slow query detection
  • JVM Diagnostics — thread dump analysis, deadlock detection, GC log parsing, heap profiling
  • Migration Advisor — Flyway/Liquibase migration risk analysis, lock detection, rollback generation
  • Spring Boot Actuator — health checks, metrics, environment, beans, startup and cache analysis
  • Redis Diagnostics — memory fragmentation, slowlog analysis, client connections, keyspace health

That is 35 tools covering the full Java backend diagnostic stack. One npm install, one config block, zero friction.

Quick Start

npm install -g mcp-java-backend-suite

Then generate your Claude Desktop configuration:

npx mcp-java-backend-suite config

Copy the output into ~/.claude/claude_desktop_config.json.

Claude Desktop Configuration

{
  "mcpServers": {
    "db-analyzer": {
      "command": "npx",
      "args": ["-y", "mcp-db-analyzer"]
    },
    "jvm-diagnostics": {
      "command": "npx",
      "args": ["-y", "mcp-jvm-diagnostics"]
    },
    "migration-advisor": {
      "command": "npx",
      "args": ["-y", "mcp-migration-advisor"]
    },
    "spring-boot-actuator": {
      "command": "npx",
      "args": ["-y", "mcp-spring-boot-actuator"]
    },
    "redis-diagnostics": {
      "command": "npx",
      "args": ["-y", "mcp-redis-diagnostics"],
      "env": {
        "REDIS_URL": "redis://localhost:6379"
      }
    }
  }
}

License

MIT