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

@onimaxxing/sussy-seeds-mcp

v0.1.5

Published

MCP server for Oxygen Not Included seed hunting. Runs the sussy-seeds wasm scanner over stdio; the LLM composes Builder AST specs and drives cluster / summary / map-tier scans against the game's real worldgen.

Readme

@onimaxxing/sussy-seeds-mcp

MCP server for Oxygen Not Included seed hunting. Runs the sussy-seeds wasm scanner over stdio so an LLM can compose Builder AST specs and drive scans against onimaxxing worldgen.

Companion to the browser scanner at onimaxxing.com/sussy-seeds. Shared share-URL format round-trips between the MCP and the web app.

Install

Claude Code

.mcp.json (project) or ~/.claude/settings.json (user):

{
  "mcpServers": {
    "sussy-seeds": {
      "command": "npx",
      "args": ["-y", "@onimaxxing/sussy-seeds-mcp"]
    }
  }
}

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json on macOS, or the platform equivalent:

{
  "mcpServers": {
    "sussy-seeds": {
      "command": "npx",
      "args": ["-y", "@onimaxxing/sussy-seeds-mcp"]
    }
  }
}

Codex CLI

codex mcp add sussy-seeds -- npx -y @onimaxxing/sussy-seeds-mcp

Or edit ~/.codex/config.toml directly:

[mcp_servers.sussy-seeds]
command = "npx"
args = ["-y", "@onimaxxing/sussy-seeds-mcp"]

Other clients

Same {command, args} shape works in Cursor, Windsurf, Zed, Continue, Cline. Progress notifications carry _meta.progressToken.

Requirements

Node 20 or newer.

Tools

Discovery

  • listClusters({filter?})
  • listWorlds({coord}), listWorldsAcrossClusters({query})
  • listStoryTraits, listMixingCategories
  • listGeysers, listTraits, listBiomes, listPois
  • listSpawnTags({query?, group?, offset?, limit?})
  • listConstraintKinds
  • listHelpers
  • listPrefabAdmissibility({coord, prefabId})

Coord composition

  • buildCoord({formState})
  • parseCoord({coord})
  • describeCoord({coord})
  • freshCoord({clusterPrefix})

Admissibility

  • verdictOf({coord, constraint}), verdictOfSpec({coord, spec})

Scanning

Streams notifications/progress when the client sends _meta.progressToken. Cancellable via JSON-RPC.

  • scan({coord, spec, opts?}): top-K over a seed range. Bytecode tier (~1M/s/core) for require-only summary specs; JS tier otherwise.
  • scanUntil({coord, spec, targetHits, opts?}): stops at N matches.
  • scanSeeds({coord, spec, seeds}): one row per input seed.

spec.preHook and spec.postHook accept raw JS. Reserved-identifier guard rejects sources that shadow the Builder emit's bindings.

Inspection

  • getSeedSummary({coord, seed})
  • getSeedDeep({coord, seed})
  • describeSeed({coord, seed, deep?})

Sharing

  • shareResults({coord, spec, seeds, scanLimit?, tab?}): returns https://onimaxxing.com/sussy-seeds/<hash>. Opening the URL loads the spec, pins the seeds, sets the coord.

Diagnostics

  • ping()
  • probeStreaming({steps, delayMs})

Constraint kinds

world.trait, world.geyser, world.distToHome, world.distTo, world.traitCount, world.oilWells, world.critter, world.plant, world.spawn, world.biomeCount, world.marshyTungstenInMagma, world.niobiumVolcanoAccess, world.sussy, world.trash, world.asteroidRemix, poi.count, map.elementMass, home.geyserNearStart, cluster.geyser, cluster.oilWells, cluster.critter, cluster.plant, cluster.sussy, cluster.trash.

License

MIT.