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

agentaos

v0.2.1

Published

AgentaOS — CLI + MCP server for threshold signing. The key never exists.

Readme

agenta

AgentaOS CLI + MCP Server -- threshold signing for AI agents.

License: Apache-2.0 npm Node.js

CLI and MCP server for AgentaOS. Gives AI agents (Claude, GPT, custom) secure on-chain spending power through threshold ECDSA -- the full private key never exists.

Install

npm install -g agentaos
# or
npx agentaos --help

Quick Start

# Create a new signer (no dashboard required)
agenta init

# Check status
agenta status

# Send ETH
agenta send 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 0.001

# Manage policies
agenta admin unlock
agenta admin policies

agenta init walks you through everything interactively -- create a new signer on the server, or import an existing one from the dashboard.

CLI

agenta --help

Commands

| Command | Description | |---------|-------------| | agenta init | Create a new signer or import an existing one | | agenta status | Show signer info, server health, and balances | | agenta info | Show raw signer config (debug) | | agenta balance | Show ETH and token balances | | agenta send <to> <amount> | Send ETH to an address | | agenta sign-message <message> | Sign a message (EIP-191) | | agenta deploy <bytecode> | Deploy a contract | | agenta proxy | Start a JSON-RPC signing proxy for Foundry/Hardhat | | agenta admin | Admin commands (policies, pause/resume, audit) |

Multi-Signer

Each signer gets its own config file under ~/.agenta/signers/.

# Create multiple signers
agenta init               # creates "my-agent"
agenta init               # creates "trading-bot"

# Use a specific signer
agenta --signer trading-bot send 0x... 0.01
agenta --signer my-agent balance

# Default signer is auto-detected (single signer) or set during init

Admin Commands

Manage policies, pause/resume, and view audit logs for your signers. Requires an admin unlock (user share from OS keychain).

# Unlock admin access (retrieves user share from keychain, computes auth token)
agenta admin unlock

# Policy management
agenta admin policies                    # list policies
agenta admin policies add                # interactive policy creation
agenta admin policies remove <id>        # remove a policy
agenta admin policies toggle <id>        # enable/disable a policy

# Signer control
agenta admin pause                       # pause signer (blocks all signing)
agenta admin resume                      # resume signer

# Audit log
agenta admin audit                       # last 20 signing requests
agenta admin audit --limit 50            # more results
agenta admin audit --status blocked      # filter by status

# Lock admin (remove token from disk)
agenta admin lock

Config Layout

~/.agenta/
  signers/
    my-agent.json           # { serverUrl, apiKey, apiSecret, network, ... }
    trading-bot.json
  admin/
    my-agent.token          # SHA-256(userShare) -- admin auth credential
  .default                  # default signer name

OS Keychain (service: agenta):
  my-agent/user-share       # user share for admin auth + backup signing

MCP Server

When invoked with no arguments, runs as an MCP server over stdio. This lets AI agents interact with the wallet through the Model Context Protocol.

18 Tools

| Tool | Description | |------|-------------| | agenta_wallet_overview | Wallet address, balances, recent activity | | agenta_list_signers | List all signers | | agenta_get_status | Server health and vault connectivity | | agenta_list_networks | Available networks and chain IDs | | agenta_get_balances | ETH and token balances | | agenta_get_audit_log | Transaction history and audit trail | | agenta_resolve_address | Resolve ENS names or validate addresses | | agenta_simulate | Simulate a transaction (gas estimate) | | agenta_read_contract | Read from any smart contract | | agenta_sign_message | Sign an EIP-191 message | | agenta_sign_typed_data | Sign EIP-712 typed data | | agenta_send_eth | Send ETH to an address | | agenta_send_token | Send ERC-20 tokens | | agenta_call_contract | Call any smart contract function | | agenta_execute | Execute a raw transaction | | agenta_x402_check | Check if a URL requires x402 payment | | agenta_x402_discover | Discover x402-protected endpoints | | agenta_x402_fetch | Fetch a 402-protected resource with auto-payment |

Claude Desktop

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

{
  "mcpServers": {
    "agenta": {
      "command": "npx",
      "args": ["-y", "agentaos", "mcp"],
      "env": {
        "AGENTA_API_KEY": "your-api-key",
        "AGENTA_API_SECRET": "your-api-secret"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "agenta": {
      "command": "npx",
      "args": ["-y", "agentaos", "mcp"],
      "env": {
        "AGENTA_API_KEY": "your-api-key",
        "AGENTA_API_SECRET": "your-api-secret"
      }
    }
  }
}

From Source (development)

{
  "mcpServers": {
    "agenta": {
      "command": "node",
      "args": ["packages/wallet/dist/index.js"],
      "env": {
        "AGENTA_API_KEY": "your-api-key",
        "AGENTA_API_SECRET": "your-api-secret"
      }
    }
  }
}

JSON-RPC Proxy

The agenta proxy command starts a local HTTP server that acts as an Ethereum JSON-RPC endpoint. It intercepts signing methods (eth_sendTransaction, eth_signTransaction, eth_sign, personal_sign) and routes them through Agenta's threshold signing, while forwarding all other calls to the upstream RPC.

agenta proxy --port 8545 --rpc-url https://sepolia.base.org

# Use with Foundry
forge script Deploy.s.sol --rpc-url http://localhost:8545

# Use with cast
cast send 0x... "transfer(address,uint256)" 0x... 1000000 --rpc-url http://localhost:8545

x402 Payment Support

Built-in support for the x402 payment protocol. AI agents can discover, check, and pay for 402-protected resources automatically.

# Check if a URL requires payment
# (via MCP: agenta_x402_check)

# Discover protected endpoints on a domain
# (via MCP: agenta_x402_discover)

# Fetch and auto-pay
# (via MCP: agenta_x402_fetch)

Environment Variables

Environment variables are an alternative to file-based config. Useful for CI/CD, Docker, or MCP server mode.

| Variable | Description | Required | |----------|-------------|----------| | AGENTA_API_KEY | API key for authentication | Yes | | AGENTA_API_SECRET | Base64-encoded signer key share | Yes | | AGENTA_SERVER | Server URL (defaults to https://api.agentaos.ai) | No | | AGENTA_NETWORK | Default network name (e.g. base-sepolia, mainnet) | No |

Security

  • The full private key never exists -- not in memory, not on disk, not ever
  • Signing is a distributed MPC protocol between your signer share and the server share
  • Signer share stored in config file (chmod 600)
  • User share stored in OS keychain (macOS Keychain, Windows Credential Manager, Linux libsecret)
  • Admin auth uses a Bitwarden-model double hash -- server never stores raw credentials
  • Server shares wiped from memory after every operation

License

Apache-2.0 -- see LICENSE.