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

@caypo/canton-gateway

v0.2.0

Published

MPP API gateway for Canton Network — pay-per-request access to OpenAI, Anthropic, and 15+ services with USDCx

Readme

@caypo/canton-gateway

MPP API gateway — pay-per-request access to OpenAI, Anthropic, and 15+ services with Canton USDCx

No API keys needed. Agents pay per request with USDCx on Canton Network via the Machine Payments Protocol (MPP).

License Services Endpoints

Services

| Service | Endpoints | Price | Category | |---------|-----------|-------|----------| | OpenAI | chat, embeddings, images, transcription, speech | $0.001 – $0.05 | AI / LLM | | Anthropic | messages | $0.01 | AI / LLM | | fal.ai | image gen, stable diffusion, whisper, video, TTS | $0.01 – $0.10 | AI / Media | | Firecrawl | scrape, crawl, map, extract | $0.005 – $0.02 | Data | | Google Gemini | chat, reasoning, embeddings | $0.005 – $0.02 | AI / LLM | | Groq | chat, embeddings | $0.001 – $0.005 | AI / LLM | | Perplexity | chat with search | $0.01 | AI / Search | | Brave Search | web, images, news, videos, suggest | $0.001 – $0.005 | Search | | DeepSeek | chat | $0.005 | AI / LLM | | Resend | send, batch email | $0.005 | Communication | | Together AI | chat, embeddings, images | $0.001 – $0.02 | AI / LLM | | ElevenLabs | TTS, voice clone | $0.02 – $0.05 | Audio | | OpenWeather | current, forecast | $0.001 | Data | | Google Maps | geocode, places, directions | $0.005 | Data | | Judge0 | execute code, languages | $0.002 | Developer | | Reloadly | gift cards | $0.01+ | Commerce | | Lob | postcards, letters, address verify | $0.01 – $0.50 | Mail |

How It Works

1. Agent sends request     →  POST /openai/v1/chat/completions
2. Gateway returns 402     ←  WWW-Authenticate: Payment method="canton" ...
3. Agent pays on Canton    →  TransferFactory_Transfer (USDCx)
4. Agent retries + cred    →  Authorization: Payment <credential>
5. Gateway verifies        →  Fetches transaction from Canton ledger
6. Gateway proxies         →  Forwards to OpenAI with API key
7. Agent receives          ←  200 OK + Payment-Receipt + response

Discovery

curl https://mpp.caypo.xyz/api/services   # JSON catalog
curl https://mpp.caypo.xyz/llms.txt       # Agent discovery
curl https://mpp.caypo.xyz/health          # Health check

Use as Library

import { app } from "@caypo/canton-gateway";

// app is a Hono instance — use with any compatible server
export default app;

Self-Host

cd apps/gateway-server
docker compose up -d

Required env vars: GATEWAY_PARTY_ID, CANTON_LEDGER_URL, CANTON_JWT, and API keys for each upstream service.

License

Apache-2.0 OR MIT