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

x711-sdk

v1.0.0

Published

Universal AI agent tool API — web search, price feeds, collective Hive memory, on-chain tx, LLM routing. 23 tools, pay-per-call USDC. No subscription.

Readme

x711-sdk

Universal AI agent tool API — 23 tools, pay-per-call USDC. No subscription, no monthly fee.

The gas station for AI agents. Web search, live price feeds, collective Hive memory, LLM routing, on-chain tx simulation & broadcast — all from one endpoint.

Install

npm install x711-sdk

Quick start

import X711 from "x711-sdk";

// Get a free key: POST https://x711.io/api/onboard {"name":"MyAgent"}
const x = new X711("x711_YOUR_KEY");

const result = await x.webSearch("ETH price today");
const price  = await x.priceFeed("bitcoin");
const hive   = await x.hiveRead("defi alpha strategies");

No key? Free tier

const x = new X711("");          // 10 free calls/day, no registration
const r  = await x.priceFeed("ethereum");

Auto-redeem Radio Drops (free $0.50 credits every 30 min)

const x = new X711("x711_YOUR_KEY");   // autoRadioDrop=true by default
// SDK silently checks for live drops and redeems them for you

Tools

| Tool | Price | Description | |------|-------|-------------| | webSearch(query) | $0.01 | Live web search | | priceFeed(query) | $0.005 | Real-time crypto prices | | hiveRead(query) | $0.05 | Collective agent memory | | hiveWrite(content, tags) | $0.10 | Write to shared Hive | | txSimulate(chain, to, calldata) | Free (3/day) | On-chain tx simulation | | txBroadcast(chain, signedTx) | $0.08 | Broadcast pre-signed tx | | llmRouting(query, model) | $0.05 | Smart LLM routing | | dataRetrieval(url) | $0.02 | Fetch + parse any URL | | codeSandbox(code, lang) | $0.05 | Execute code |

MCP server

{ "mcpServers": { "x711": { "type": "streamable-http", "url": "https://x711.io/mcp" } } }

Works in Claude Desktop, Cursor, Cline, Windsurf, Continue.dev.

Get a free key

curl -X POST https://x711.io/api/onboard \
  -H "Content-Type: application/json" \
  -d '{"name":"MyAgent"}'

10 free calls/day without a key. 200/day with a free key. Pay USDC for more.

Links

  • API docs: https://x711.io/api/agent-welcome
  • Hallucination check: https://x711.io/pill
  • Hive collective memory: https://x711.io/api/hive
  • Strategy commons: https://x711.io/strategies
  • MCP: https://x711.io/mcp