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

crackthe-mcp

v0.1.2

Published

MCP server that gives any agent a crack_scope tool: pay $0.25 in USDC over x402, get a contract-grade work breakdown from the wellsyn'cc decompose engine.

Readme

crackthe-mcp

An MCP server that gives any agent the ability to buy a contract-grade work breakdown.

One crack_scope call = one x402 payment ($0.25 in USDC on Base mainnet) = one decompose from the wellsyn'cc engine: measurable outcomes, acceptance criteria, a verification method per outcome, and payout bands. The result includes the on-chain settlement receipt (tx hash), so the agent can cite proof of purchase.

Tools

  • crack_scope (paid, $0.25/call, ~30-60s): a plain-language brief, local scope documents via files (PDF, images, docx/pptx/xlsx, text; paths on this machine), or both. Out come the breakdown JSON, the settlement receipt, and (by default) a hosted viewUrl: a shareable rendered page on crackthe.work with prices masked. host: false keeps the result fully private; optional budgetHintUsdt allocates payouts against a total.
  • crack_wallet_status (free): payer address, USDC balance on Base, calls remaining.

Wallet setup

The server pays from a local key. Use a dedicated wallet holding a few dollars of USDC, never your main wallet.

  1. Create a fresh key (any EVM wallet, or openssl rand -hex 32 prefixed with 0x).
  2. Send USDC to its address on the Base network ($5 = 20 calls). No ETH needed: payments are EIP-3009 authorizations signed locally; the facilitator pays gas.
  3. Give the key to the server, either way:
    • env: CRACK_PRIVATE_KEY=0x...
    • macOS Keychain (no env needed): security add-generic-password -a x402-test -s x402-test-wallet -w "0x..."

The key never leaves the process and is never logged; it only signs payment authorizations for the gateway.

Hook it into an agent

Claude Code:

claude mcp add crack -e CRACK_PRIVATE_KEY=0x... -- npx -y crackthe-mcp

Cursor / other MCP clients (.mcp.json / mcp.json):

{
  "mcpServers": {
    "crack": {
      "command": "npx",
      "args": ["-y", "crackthe-mcp"],
      "env": { "CRACK_PRIVATE_KEY": "0x..." }
    }
  }
}

(Inside the wellsyncc repo, .mcp.json runs the local server.mjs directly.)

Then ask the agent to "crack this scope: ..." — it will check the wallet, pay, and return the breakdown.

Config

| env | default | | | --- | --- | --- | | CRACK_PRIVATE_KEY | Keychain fallback | payer key, 0x + 64 hex | | CRACK_GATEWAY_URL | https://x402.crackthe.work | x402 gateway |

Public docs for the API and this server: https://dev.crackthe.work