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

hoodsynapse-mcp

v1.0.0

Published

MCP server for Robinhood Chain — gives AI agents live blocks, tokenized equities, RWAs and chain history through Hood Synapse.

Downloads

141

Readme

hoodsynapse-mcp

An MCP server that gives AI agents read access to Robinhood Chain — live blocks, tokenized real-world assets, memecoins, and the history an RPC can't return.

No key. No account. Everything it reports is verifiable against the chain.

Why

Agents that touch a chain need data they can trust. Robinhood Chain carries tokenized equities (NVIDIA, Tesla, Apple), ETFs (S&P 500, silver), private companies (SpaceX) and native memecoins — but a raw RPC answers only for the present, in hex.

This server hands an agent the clean version, plus the history.

Install

Add it to your MCP client config:

{
  "mcpServers": {
    "hoodsynapse": {
      "command": "npx",
      "args": ["-y", "hoodsynapse-mcp"]
    }
  }
}

For Claude Desktop that file is:

  • macOS — ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows — %APPDATA%\Claude\claude_desktop_config.json

Restart the client and the tools appear.

Tools

| Tool | What the agent gets | | --- | --- | | get_chain_stats | Latest block, block time, gas, L1 anchor | | list_tokens | Tokens by activity — filter rwa, equity, fund, private, stable, native | | get_block | One block, Orbit fields decoded, system txs separated | | get_daily_activity | Daily transactions and block cadence, drawn as a chart | | get_index_status | What the index holds and how far behind the chain it is | | get_gas | Gas price, base fee, and why priority fees are zero here |

What an agent can answer with this

  • "What real-world assets trade on Robinhood Chain?" → NVIDIA, GameStop, Alphabet, SpaceX, iShares Silver, Strategy, Apple, Tesla, S&P 500 …
  • "How busy is the chain today versus last week?"
  • "What's block 20,401,056 and how much gas did it burn?"
  • "Is the index current enough to trust this answer?"

Sample output from list_tokens({ kind: "rwa" }):

RWA tokens on Robinhood Chain, by activity

 1. NVDA       equity      1,555 transfers   NVIDIA • Robinhood Token
 2. GME        equity      1,484 transfers   GameStop • Robinhood Token
 3. GOOGL      equity        752 transfers   Alphabet Class A • Robinhood Token
 4. SPCX       private       749 transfers   Space Exploration Technologies Corp.
 5. SLV        fund          560 transfers   iShares Silver Trust • Robinhood Token

How the data gets there

Live values (get_chain_stats, get_block, get_gas) come straight from the chain's public RPC. History (get_daily_activity, list_tokens) comes from the Hood Synapse index — a database that samples the chain continuously, because Robinhood Chain produces around 10 blocks per second and an RPC keeps no past.

get_index_status always reports the index's real coverage, so an agent can tell the difference between "no activity" and "not indexed yet".

Configuration

| Variable | Purpose | | --- | --- | | HOODSYNAPSE_API | Point at another deployment. Defaults to https://hoodsynapse.xyz/api. |

Requires Node 18+.

Links


Hood Synapse is an independent project. Not affiliated with, endorsed by, or sponsored by Robinhood Markets, Inc.

MIT