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

@rwakernel/mcp-server

v0.2.0

Published

MCP server for RWA Kernel. Gives AI agents structured, tier-aware access to the registry of tokenized real-world assets (treasuries, MMFs, credit, compute, IP, carbon, energy, data, etc).

Readme

@rwakernel/mcp-server

MCP server for RWA Kernel. Gives AI agents structured, tier-aware access to 400+ tokenized real-world assets — treasuries, MMFs, private credit, compute, carbon, energy, IP, data, and more.

What you get

Seven tools, all return structured JSON with provenance:

| Tool | Description | |------|-------------| | rwa_list_assets | Discover assets by class, chain, or search. | | rwa_get_asset | Full asset detail (issuer, legal, eligibility, cash flow). | | rwa_inspect_token | Resolve a token from {chainId, address} to its full RWA context. | | rwa_get_metrics | Live NAV / AUM / yield with source attribution and quality scores. | | rwa_compare_assets | Side-by-side risk / yield / AUM / eligibility comparison. | | rwa_check_eligibility | Who can hold the asset, by jurisdiction + investor type. | | rwa_risk_audit | Flagship. Portfolio rollup across six risk dimensions + concentration + eligibility violations. |

Install

Remote (Streamable HTTP) — preferred

If your client supports remote MCP (Claude.ai web, OpenAI Agents SDK, n8n, Zapier MCP, Smithery Playground), point it at:

https://rwakernel.com/api/mcp

Send your key in the x-api-key or Authorization: Bearer header. Without a key you get anonymous free-tier access (20 calls/day per IP).

Claude Desktop / Cursor / Windsurf (stdio)

Add to your client's MCP config:

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "rwakernel": {
      "command": "npx",
      "args": ["-y", "@rwakernel/mcp-server"],
      "env": {
        "RWA_API_KEY": "rwa_live_..."
      }
    }
  }
}

Cursor (~/.cursor/mcp.json or workspace .cursor/mcp.json):

{
  "mcpServers": {
    "rwakernel": {
      "command": "npx",
      "args": ["-y", "@rwakernel/mcp-server"],
      "env": {
        "RWA_API_KEY": "rwa_live_..."
      }
    }
  }
}

Restart the client. You should see 7 rwa_* tools appear.

Smithery

npx -y @smithery/cli install @rwakernel/mcp-server --client claude

Environment

| Var | Default | Purpose | |-----|---------|---------| | RWA_API_KEY | (none) | Increases rate limits. Unlocks metrics, full eligibility, risk profiles. Get one at rwakernel.com/developers. | | RWA_KERNEL_URL | https://rwakernel.com | Override the API base (e.g. for staging). |

Example prompts

Show me tokenized US treasuries on Ethereum with more than $100M AUM.

Can a Singapore retail investor hold OUSG?

Compare BUIDL, OUSG, and USDY for a DAO treasury on Base.

Audit my portfolio: 5000 BUIDL on Ethereum (0x7712...), 2000 OUSG on Polygon. Weighted risk and concentration please.

Tiers

| Tier | Price | Daily | Features | |------|-------|-------|----------| | Free / anonymous | $0 | 20 (anon) / 50 (key) | Basic metadata | | Developer | $199/mo | 500 | Full data, eligibility, metrics | | Professional | $499/mo | 5,000 | + Risk profiles, MCP access | | Enterprise | Custom | 100,000+ | + Bulk export, SLA |

Support

Questions, bug reports, or feature requests: rwakernel.com/mcp.

License

MIT