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

minecraft-developing-mcp

v0.1.15

Published

MCP stdio server for Minecraft Java, KubeJS, datapack, resource pack, Gradle, and mod archive development evidence.

Readme

minecraft-developing-mcp

MCP stdio server for Minecraft development assistance.

Usage

npx -y --package minecraft-developing-mcp@latest mc-developing-mcp

For MCP client configuration, use the same command shape:

{
  "command": "npx",
  "args": ["-y", "--package", "minecraft-developing-mcp@latest", "mc-developing-mcp"]
}

The package exposes the mc-developing-mcp binary and keeps the public MCP tool surface focused on mc_develop. Runtime evidence routes cover workspace detection, Gradle dependency evidence, Java diagnostics, local mod archives and nested JarJar archives, ProbeJS/KubeJS type evidence, datapack/resource-pack files, vanilla source acquisition, and optional offline documentation resources.

structuredContent includes top-level summaries for workspacePreparation, crashSignals, javaDiagnostics, kubeJsQuality, and clientVisualVerifier. MCP clients should use these fields as compact entry points, then follow detailed evidence blocks and suggested next-call patterns only when more context is needed.

Optional MDM resource packages are installed only when requested. Normal use starts with a discovery call and no download:

{
  "requestText": "Check whether an offline docs/resource package would help this task."
}

If structuredContent.resourceActions.actions suggests a package and the user confirms the download, call mc_develop again with the suggested inputPatch.mdmReleaseInstall and downloadPolicy: "allowed":

{
  "requestText": "Install and use MDM docs/resources for this task.",
  "mdmReleaseInstall": {
    "manifestUrl": "https://github.com/PickAID/mdm-sources/releases/download/mdm-resources-v0.2.0/mdm-release-manifest.json",
    "packageId": "core-docs-search-sqlite",
    "downloadPolicy": "allowed"
  }
}

For normal use, first call mc_develop without mdmReleaseInstall and inspect structuredContent.resourceActions.actions. If a suggested action is appropriate, call again with its inputPatch.mdmReleaseInstall and change downloadPolicy from disabled to allowed after user confirmation. Installed artifacts are reused from the local runtime cache on later calls.

The npm package does not include MDM bundles. The mdm-resources-v0.2.0 release uses channel bundles for datapack, resourcepack, mappings, and source-profile packages as transport and verification containers. The MCP downloads the bundle asset only after confirmation, verifies it, extracts the requested package member, and stores the package artifact in the local runtime cache.

Vanilla datapack/resource-pack explanation docs are generated in the mdm-sources repository from SpyglassMC/vanilla-mcdoc and misode/misode.github.io. The vanilla-schema-docs bundle internalizes compact mcdoc schema previews, upstream hashes, and misode generator/interpreter references, then refreshes by scheduled upstream update workflow before release.

External services that require credentials, such as CurseForge or ShaderToy API lookup, should be configured by the user at runtime. The package does not embed private API keys or generated private cache data.

This package requires Node.js >=22.5.0 because runtime indexing and offline documentation paths use node:sqlite. It is published as one public npm package; internal workspace modules are bundled into the package and are not required as public npm dependencies.

Java modding routes also need a local Java JDK. File-only inspection can work without Java, but Gradle dependency evidence, ForgeGradle/NeoForgeGradle workspaces, Java LSP/JDTLS diagnostics, and generated vanilla/source-package workflows require a JDK compatible with the target Minecraft project.

Typical baselines:

  • Minecraft 1.18.2 through 1.20.1: JDK 17.
  • Minecraft 1.20.5 and newer modern projects: JDK 21 unless the loader or Gradle toolchain says otherwise.

Before diagnosing Java mod projects, verify the host:

java -version
./gradlew --version

If those commands fail in the target workspace, the MCP may still return file and jar evidence, but Java diagnostics and Gradle-derived source evidence will be incomplete.