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

@yieldpay/mcp-server

v1.0.1

Published

MCP Server for YieldPay — Zero-loss AI agent payments via AAVE yield on Base L2

Readme

@yieldpay/mcp-server

MCP Server for the YieldPay zero-loss payment protocol. Enables AI agents (Claude Code, Cursor, etc.) to discover services, execute payments, and manage vaults on Base L2.

Install

npm install -g @yieldpay/mcp-server

Configure in Claude Code

Add to your ~/.claude/settings.json:

{
  "mcpServers": {
    "yieldpay": {
      "command": "npx",
      "args": ["@yieldpay/mcp-server"],
      "env": {
        "VAULT_ADDRESS": "0xYourVaultAddress",
        "AGENT_PRIVATE_KEY": "0xYourAgentKey",
        "YIELDPAY_NETWORK": "BASE_MAINNET"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | YIELDPAY_NETWORK | No | BASE_MAINNET (default) or BASE_SEPOLIA | | VAULT_ADDRESS | For payments | Your deployed vault address | | AGENT_PRIVATE_KEY | For payments | Agent wallet private key |

Read-only tools (discover, APY, vault info) work without any keys.

Tools

Read-Only (no keys needed)

| Tool | Description | |------|-------------| | discover_services | Browse all active services in the on-chain registry | | get_service_info | Get details of a specific service agent | | get_live_apy | Current AAVE V3 USDC supply APY on Base | | get_vault_info | Read vault balances (principal, float, gas tank) | | calculate_duration | Estimate lock time for delegateYield |

Write (requires AGENT_PRIVATE_KEY)

| Tool | Description | |------|-------------| | fast_pay | Instant payment from yield float | | delegate_yield | Lock capital to generate yield for a service | | register_service | Register as a service provider | | sign_service_request | Sign off-chain payment (zero gas) |

Resources

| Resource | URI | Description | |----------|-----|-------------| | Protocol Info | yieldpay://protocol-info | Overview of YieldPay protocol | | Addresses | yieldpay://addresses | Contract addresses for current network |

Example Conversation

User: What AI services are available on YieldPay?
Claude: [calls discover_services] Found 3 active services...

User: Pay PixelForge $0.02 for an image generation
Claude: [calls fast_pay with service_agent and 0.02] FastPay successful! Tx: ...

User: What's the current yield rate?
Claude: [calls get_live_apy] AAVE V3 USDC APY on Base: 2.79%

License

MIT