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

create-lemon-agent

v0.2.5

Published

Scaffold an AI agent that pays per API call with USDC via LemonCake — running in 90 seconds.

Downloads

67

Readme

🍋 create-lemon-agent

npm version npm downloads CI License: MIT

Scaffold an AI agent that pays per API call with USDC — running in 90 seconds.

demo

npx create-lemon-agent my-agent
cd my-agent
npm install
cp .env.example .env   # paste your LEMON_CAKE_PAY_TOKEN
npm start "東京の天気は?"

Token scope: When issuing a Pay Token at lemoncake.xyz/dashboard, choose ALL services so the agent can discover and call any available API. A SINGLE-service token will be rejected when the agent tries a different service.

A 30-line Claude Agent SDK project, pre-wired to lemon-cake-mcp. Your agent discovers paid services, pays in USDC autonomously, and every charge is auto-journaled into freee or Money Forward when connected.

What you get

my-agent/
├── package.json          # @anthropic-ai/claude-agent-sdk + lemon-cake-mcp
├── .env.example          # LEMON_CAKE_PAY_TOKEN= placeholder
├── tsconfig.json
├── README.md
└── src/
    └── index.ts          # 30-line Claude agent that uses paid services

Run output

$ npm start "東京の天気は?"

🍋 Asking Claude: "東京の天気は?"
[tool] mcp__lemon-cake__list_services({…})
[tool] mcp__lemon-cake__call_service({"service":"serper",…})
今日の東京は晴れ、最高22℃です。
✓ Done. Cost: 0.004 USD (Claude) + LemonCake charges
📊 Charges sync to freee/Money Forward daily if connected

Why USDC / JPYC — not plain yen?

AI agents need micro-payments: $0.001 per API call. Bank transfers minimum is ¥1 and cards eat the fee. USDC/JPYC settle instantly with near-zero cost.

Want yen? Use JPYC (Polygon ERC-20 pegged 1:1 to yen). No FX risk, no crypto-asset tax complexity.

vs. alternatives

| | LemonCake | Composio | RapidAPI | Skyfire | |---|---|---|---|---| | Micro-payments ($0.001/call) | ✅ | ❌ | ❌ | ✅ | | Japan tax (withholding + invoice) | ✅ | ❌ | ❌ | ❌ | | freee / MF auto-journal | ✅ | ❌ | ❌ | ❌ | | JPYC (yen-pegged) | ✅ | ❌ | ❌ | ❌ | | MCP server support | ✅ | ❌ | ❌ | ❌ | | npx scaffold in 90 sec | ✅ | ❌ | ❌ | ❌ |

Why

  • No infra to host. lemon-cake-mcp runs locally via npx, no servers to deploy.
  • No token plumbing. Claude Agent SDK auto-discovers the MCP tools.
  • Real receipts. Connect freee / Money Forward in the dashboard and every call shows up as a journal entry — qualified-invoice & withholding-tax aware.

Companion projects

| Surface | Package | For | |---------|---------|-----| | MCP server | lemon-cake-mcp | Claude Desktop / Cursor / Cline users | | ElizaOS plugin | eliza-plugin-lemoncake | ElizaOS agent builders | | Starter kit | create-lemon-agent (this) | Anyone with npx |

Links

License

MIT