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

itemscore-helper

v1.4.1

Published

One command sets up any AI (Claude, Codex, Cursor, Gemini, and others) to build and edit custom Minecraft items for the ItemsCore plugin. Auto-detects your AI tools and connects a local MCP server that runs entirely on your machine.

Downloads

1,056

Readme

itemscore-helper

Set up any AI assistant to build and edit custom Minecraft items for the ItemsCore plugin. Works with Claude, Codex, Cursor, Gemini, and anything else that supports MCP or custom instructions. You do not need to know how to code.

Easiest: paste one prompt into your AI

Copy the prompt below and paste it into your AI (Claude, Cursor, Gemini, Codex, anything). It downloads and connects the ItemsCore tools itself, then asks what item you want - no terminal knowledge needed:

You are my coding agent and I do not know how to code, so do the whole setup yourself - actually run the commands, do not just tell me what to run.

1. In my project folder, run this to download and connect the ItemsCore tools:
   npx -y itemscore-helper install
   It installs a local helper and wires an "itemscore" MCP server into this project. When it finishes, reload your MCP servers (or ask me to restart this app) so the itemscore tools load. If you truly cannot run commands, add this to your MCP config instead:
   {"mcpServers":{"itemscore":{"command":"npx","args":["-y","itemscore-helper","serve"]}}}

2. Read https://www.coredevelopment.shop/llms.txt so you know the ItemsCore item format and every method available.

3. Tell me you are ready, then ask what item I want. Build a valid .import file (clean item JSON), validate it, and tell me to drop it in plugins/ItemsCore/imports/ and run /ic import in-game. The item stays fully editable in the in-game editor.

The same prompt is on the docs page with a one-click Copy button.

Or set it up in one command

npx itemscore-helper

This auto-detects the AI tools on your machine and connects the local MCP server to each one (a backup of every file it changes is saved beside it). Then just ask your AI for an item.

What it sets up

  1. The skill (SKILL.md) - the instructions your AI follows to author correct ItemsCore items.
  2. A local MCP server - runs on your machine (no account, no hosting, works offline) so your AI can look up the exact methods, triggers, and item schema and validate an item before you use it.

The MCP server is npx -y itemscore-helper serve. It speaks the standard stdio MCP transport, which every MCP client supports.

Commands

| Command | What it does | |---|---| | npx itemscore-helper | Auto-detect your AI tools and connect the local MCP server | | npx itemscore-helper --dry-run | Show what would change, without writing anything | | npx itemscore-helper serve | Run the local MCP server (this is what your AI runs) | | npx itemscore-helper print | Print the skill instructions to stdout | | npx itemscore-helper mcp | Print the MCP server config | | npx itemscore-helper help | Show help |

Connecting your AI (any provider)

Add the local MCP server. The config is the same everywhere: run npx -y itemscore-helper serve.

Cursor - .cursor/mcp.json

{ "mcpServers": { "itemscore": { "command": "npx", "args": ["-y", "itemscore-helper", "serve"] } } }

Claude Code - .mcp.json in your project (or claude_desktop_config.json for Claude Desktop)

{ "mcpServers": { "itemscore": { "command": "npx", "args": ["-y", "itemscore-helper", "serve"] } } }

Gemini CLI - ~/.gemini/settings.json

{ "mcpServers": { "itemscore": { "command": "npx", "args": ["-y", "itemscore-helper", "serve"] } } }

Codex - ~/.codex/config.toml

[mcp_servers.itemscore]
command = "npx"
args = ["-y", "itemscore-helper", "serve"]

Use your server's exact API (optional)

By default the server ships with a snapshot of the standard ItemsCore API. If you use addons that add methods, run /ic exportapi in-game and point the server at the generated file so it knows your exact API:

  • set an env var ITEMSCORE_API=/path/to/plugins/ItemsCore/itemscore-api.json, or
  • add "--manifest", "/path/to/itemscore-api.json" to the args.

Prefer not to install anything?

A hosted copy of the same server is also available (no install): https://www.coredevelopment.shop/api/mcp (Streamable HTTP), with https://www.coredevelopment.shop/llms.txt as a plain-text guide.

After connecting, give your AI the SKILL.md file as its instructions (paste it into the chat, or add it to .cursorrules / CLAUDE.md / AGENTS.md / GEMINI.md).

How you use it

  1. Ask your AI for an item.
  2. It writes a small .import (JSON) file and validates it.
  3. Put that file in plugins/ItemsCore/imports/ on your server.
  4. Run /ic import <name> in-game. The item is live and stays editable in the in-game editor.

To edit an existing item, run /ic export <name>, share the exported file with your AI, and re-import the result.

Links

  • Documentation: https://www.coredevelopment.shop/docs/itemscore
  • Plugin page: https://www.coredevelopment.shop/plugins/itemscore

License

MIT