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

anygas-mcp

v1.1.1

Published

Robyn MCP server — gasless cross-chain for AI agents. Quote and execute gasless moves across 22 EVM chains + Stellar, one signature, no native gas.

Readme

anygas-mcp

Integrate, don't replicate. This package is MIT — integrate Robyn into your app, agent, or product freely, no restrictions. The license covers only this client library; Robyn's relayer, smart contracts, and network are proprietary and are not licensed here. Don't use it (or the Robyn API) to run a competing gasless-relay service or to replicate Robyn. See NOTICE. Build with Robyn: yes. Clone Robyn to cut it out: no.

Gasless cross-chain for AI agents, as an MCP server.

Give any MCP-capable agent (Claude Desktop, Cursor, agent frameworks) the ability to move value across 22 EVM chains + Stellar with one signature and zero gas management — no native token, no per-chain balances, no bridge picking. Robyn's relayer fronts all gas on both chains and is reimbursed from the token being moved.

Tools

| Tool | Needs key | What it does | |---|---|---| | robyn_mesh | no | List the gasless chains + cross-chain route graph (22 EVM nodes + Stellar). | | robyn_quote | no | Best gasless route for a move — estimated output, bridge, duration, fee. Read-only. | | robyn_route_status | no | Track an in-flight route (BRIDGING → DONE) with the destination tx. | | robyn_cross_chain | yes | Execute a gasless cross-chain move. Signs one Permit2 intent; the agent pays no gas. |

Read tools work with no credentials. robyn_cross_chain only activates when ROBYN_SIGNER_KEY is set — otherwise the server is safely read-only.

Configure (Claude Desktop)

{
  "mcpServers": {
    "robyn": {
      "command": "npx",
      "args": ["-y", "anygas-mcp"],
      "env": {
        "ROBYN_SVC": "https://api.anygas.xyz/svc",
        "ROBYN_SIGNER_KEY": "0x…"          // optional — omit for read-only
      }
    }
  }
}

One-time setup (only for execution)

Permit2 SignatureTransfer requires a single, standard approval per (token, chain) — done once by the signer:

await token.approve("0x000000000022D473030F116dDEE9F6B43aC78BA3", ethers.MaxUint256);

After that, every cross-chain move is a single gasless signature — the agent never holds native gas anywhere.

Example

Agent: "Move 25 USDC from Base to Arbitrum." Calls robyn_cross_chain({ fromChain: 8453, fromToken: "0x833589…", amount: "25000000", toChain: 42161, toToken: "0xaf88…" }){ id: "rt_…", status: "BRIDGING", gasless: true }, then robyn_route_statusDONE.

Stellar is a first-class destination too — set toChain: "stellar" and toToken: "USDC".

Security notes

  • ROBYN_SIGNER_KEY is a hot key. Fund it only with what an agent should be able to move; treat the MCP env as a secret.
  • The signer never submits a transaction or spends gas — it only signs Permit2 intents. Robyn's relayer executes and fronts gas.
  • Leave ROBYN_SIGNER_KEY unset to run a safe, read-only quoting/tracking server.

MIT.