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

lego-oracle

v0.1.1

Published

LEGO sets, parts, minifigs, and inventories as an MCP server

Readme


Ask your AI assistant about LEGO sets, find specific bricks, look up minifigures, browse themes, and compare sets. All backed by Rebrickable's catalog (26k sets, 62k parts, 17k minifigs), not hallucinations.

10 tools. Zero config. Works with every MCP-compatible IDE.

Install

npx -y lego-oracle

Add to your IDE

claude mcp add lego-oracle -- npx -y lego-oracle

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "lego-oracle": {
      "command": "npx",
      "args": ["-y", "lego-oracle"]
    }
  }
}

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "lego-oracle": {
      "command": "npx",
      "args": ["-y", "lego-oracle"]
    }
  }
}

Add to .vscode/mcp.json:

{
  "servers": {
    "lego-oracle": {
      "command": "npx",
      "args": ["-y", "lego-oracle"]
    }
  }
}

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "lego-oracle": {
      "command": "npx",
      "args": ["-y", "lego-oracle"]
    }
  }
}

Add to settings.json:

{
  "context_servers": {
    "lego-oracle": {
      "command": {
        "path": "npx",
        "args": ["-y", "lego-oracle"]
      }
    }
  }
}

Tools

Set Tools

| Tool | Description | |------|-------------| | search_sets | Search for sets by name, theme, year, or piece count. Full-text search with filters. | | get_set | Get complete set details: inventory (grouped by part category), minifigures, theme hierarchy. | | compare_sets | Compare 2-4 sets side by side: piece count, year, theme, minifigs, shared parts. |

Part Tools

| Tool | Description | |------|-------------| | search_parts | Search parts by name, category, colour, or material. | | get_part | Get part details including available colours and mold/print variants. | | find_part_in_sets | Find which sets contain a specific part (optionally in a specific colour), sorted by quantity. |

Minifig Tools

| Tool | Description | |------|-------------| | search_minifigs | Search minifigures by name. | | get_minifig | Get minifig details and every set it appears in. |

Discovery Tools

| Tool | Description | |------|-------------| | browse_themes | Browse the LEGO theme hierarchy. Top-level themes or drill into sub-themes with set counts. | | find_mocs | Find community alternate builds (MOCs) for a set's parts. |

Data

All data is embedded at build time from Rebrickable. No network calls at runtime.

| Category | Count | |----------|-------| | Sets | 26,339 | | Parts | 61,702 | | Colours | 275 | | Minifigures | 16,646 | | Inventory entries | 1,483,652 | | Part relationships | 35,757 | | Themes | 490 |

Data is updated daily via GitHub Actions. New npm versions are published automatically when Rebrickable data changes.

Development

npm install
npm run build
npm test             # 141 tests

To refresh data from Rebrickable:

npm run fetch-data
npm run build

Attribution

Data from Rebrickable. LEGO is a trademark of the LEGO Group. This project is not produced by or endorsed by the LEGO Group.

License

MIT