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

@wbtc-mcp/wbtc-mcp

v1.0.0

Published

Read-only WBTC MCP server backed by WBTC Public API.

Downloads

169

Readme

WBTC MCP Server

Read-only MCP server for WBTC transparency data. The server runs locally over stdio and uses WBTC Public API /public/v1 as its only data source.

Version

| Item | Value | | --- | --- | | Server version | 1.0.0 | | MCP SDK | @modelcontextprotocol/[email protected] | | Public API | WBTC Public API v1 | | License / SPDX | UNLICENSED |

Tools

  • get_proof_of_reserve: reserve health only, returns reserveRatio.
  • get_supply: supply only, returns circulatingSupply and native-chain byChain[].
  • get_reserves: reserve assets only, returns nativeBtcReserve, btcPriceUsd, and reserveValueUsd.
  • list_chains: chain and contract metadata only.
  • list_custodian_addresses: custodian BTC reserve address evidence only.
  • list_mint_burn_records: paginated mint/burn records with filters.
  • list_merchants: public merchant directory entries.
  • list_custodians: public custodian directory entries.
  • list_ecosystem_projects: public ecosystem project entries.

get_about is not registered yet because the current Public API v1.0 schema has no /about endpoint or equivalent public contract. It should be added after the upstream contract is defined.

Every tool declares a strict MCP inputSchema and a tool-specific outputSchema. No-argument tools use { "type": "object", "properties": {}, "additionalProperties": false }.

Configuration

| Env var | Default | | --- | --- | | WBTC_PUBLIC_API_TIMEOUT_MS | 8000 |

The Public API base URL is fixed in the package as https://openapi.wbtc.network/public/v1; users do not need to configure it. The package does not read wallet keys, seed phrases, cloud credentials, or other sensitive local environment variables. Authentication is not required because the server calls only public read-only API endpoints. The fixed base URL also prevents user-supplied URL SSRF patterns.

Local Development

npm ci
npm run build
npm test
npm run test:e2e:staging

Internal QA Install

Until official npm publishing is ready, install from the repository checkout:

cd services/wbtc-mcp
npm ci
npm run build
npm install -g .

Or install from an internally generated tarball:

npm install -g ./wbtc-mcp-1.0.0.tgz

MCP client configuration:

{
  "mcpServers": {
    "wbtc": {
      "command": "wbtc-mcp",
      "env": {
        "WBTC_PUBLIC_API_TIMEOUT_MS": "15000"
      }
    }
  }
}

Repository-local QA notes live in docs/usage.md.