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

hooddomains-mcp

v0.1.1

Published

MCP server for Hood Domains — resolve, look up, and register .hood names on Robinhood Chain. All on-chain, no backend.

Readme

hooddomains-mcp — Hood Domains MCP server

npm version

An MCP server that gives AI agents .hood name tools on Robinhood Chain.

Hood Domains · www.hood.domains · app · docs · npm · GitHub · X @hooddomains

There is no backend to host. This server runs on the agent's machine and talks directly to a Robinhood Chain RPC + the on-chain contracts. Read tools work out of the box; registration requires you to supply a funded key.

Tools

| Tool | Type | Description | |---|---|---| | resolve_name | read | .hood name → the wallet it points at | | reverse_lookup | read | wallet → its primary .hood name | | get_text | read | one text record for a name (any key) | | get_records | read | a name's wallet + common text records | | check_availability | read | is a label free + its price | | name_info | read | owner, expiry, resolver, tokenId | | register_name | write | register a name (needs HOOD_PRIVATE_KEY) |

Configure (Claude Desktop / any MCP client)

{
  "mcpServers": {
    "hooddomains": {
      "command": "npx",
      "args": ["-y", "hooddomains-mcp"],
      "env": {
        "HOOD_RPC_URL": "https://robinhood-mainnet.g.alchemy.com/v2/YOUR_KEY"
      }
    }
  }
}

Or run locally:

cd mcp
npm install
HOOD_RPC_URL=... node index.mjs

Env

  • HOOD_RPC_URLrequired. A Robinhood Chain (chainId 4663) RPC endpoint. Use a server-capable key — a browser origin-allowlisted key (like the dapp's) is rejected server-side with "Unspecified origin not on whitelist".
  • HOOD_PRIVATE_KEY — optional. A funded Robinhood Chain private key that enables register_name. Only set this if you want the agent to spend ETH and register names. Leave it unset for a safe, read-only server.

Notes

  • register_name runs the two-step commit→reveal flow and takes ~70s (the ~60s front-run protection wait); some clients may need a longer tool timeout.
  • No API keys and no Hood infrastructure are required beyond your own RPC.
  • Contracts (chainId 4663): registry 0xd1a6f766577a0cd3c0f9f30b4add8623a49c5e41, registrar 0x59ac59d6a06689cc83b68dab07261cb25b8ca03e, reverse registrar 0x7614e0f829e2c7a0c093005ae887ff117d9e1df4. See /llms.txt on the site for full ABIs.