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

@ardensh/mcp

v0.1.5

Published

Give your AI agents a wallet, a budget, and the ability to pay — from Claude, Cursor, or any MCP client. Provision agents, execute payments, enforce budgets, and manage vendor allowlists via natural language.

Readme

@ardensh/mcp

Your AI agents can now pay for things — provision wallets, set budgets, and execute payments without leaving your AI assistant.

Arden gives each agent its own wallet and a budget. When the agent needs to pay, Arden checks the budget and vendor allowlist, then executes the payment on Base. This MCP server exposes the full payment lifecycle via natural language in Claude Desktop, Cursor, Claude Code, or any MCP-compatible client.

"Pay $0.01 to exa.ai from my researcher agent"

Tools

| Tool | Description | |---|---| | arden_provision_agent | Create a new agent with a wallet, budget limits, and vendor restrictions | | arden_list_agents | List all agents with spend and budget usage | | arden_agent_status | Detailed status and budget breakdown for a specific agent | | arden_update_agent | Adjust an agent's budgets, allowed vendors, or pause it | | arden_fund_agent | Get wallet address and USDC funding instructions | | arden_pay | Execute a payment from an agent wallet with budget enforcement | | arden_check_payment | Dry-run a payment check without moving money | | arden_check_balance | Read an agent's live USDC balance on Base |

Setup

1. Add to Claude Desktop

Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "arden": {
      "command": "npx",
      "args": ["-y", "@ardensh/mcp"],
      "env": {
        "ARDEN_API_KEY": "arden_live_..."
      }
    }
  }
}

Get your ARDEN_API_KEY by running arden login (see below), or find it at arden.sh.

2. Add to Claude Code

claude mcp add arden -- npx -y @ardensh/mcp

If you haven't run arden login on this machine, pass your key explicitly:

claude mcp add arden -e ARDEN_API_KEY=arden_live_... -- npx -y @ardensh/mcp

3. Add to Cursor

Add the same block as the Claude Desktop config above to Settings → MCP.

Authentication

The server looks for credentials in this order:

  1. ARDEN_API_KEY environment variable
  2. ~/.arden/config.json (written by arden login)

If you've already installed the Arden CLI and run arden login, no env var is needed.

npm install -g @ardensh/cli
arden login

Development

npm install
npm run dev      # run with tsx (no build step)
npm run build    # compile to dist/