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

@moly-mcp/lido

v1.2.2

Published

Terminal assistant for Lido staking — stake, unstake, wrap, govern, bridge, and monitor positions.

Readme

@moly-mcp/lido

Terminal assistant for managing Lido staking positions. Stake ETH, manage stETH/wstETH, track withdrawals, vote on governance, bridge from L2, and monitor your position with alerts.

Install

npm i -g @moly-mcp/lido

Or run directly:

npx @moly-mcp/lido

Setup

First run launches an interactive wizard that configures your wallet, network, and RPC.

moly setup    # re-run wizard
moly config   # view current config (keys redacted)
moly reset    # wipe config and start fresh

Config is saved to ~/.moly/config.json (chmod 600).

Commands

Position

moly position              # cross-chain summary (ETH + Base + Arbitrum)
moly position 0xAddress    # specific address

Bounds (Policy Limits)

Human-set guardrails enforced before any write operation.

moly bounds                # show current bounds
moly bounds set --max-stake-per-tx 1.0 --max-daily-stake 10 --min-eth-reserve 0.5
moly bounds reset          # restore defaults

Defaults: max 10 ETH/tx, 50 ETH/day, 0.5 ETH reserve, auto-vote off.

Alerts

moly alert add balance_below 1.0
moly alert add withdrawal_ready
moly alert add reward_rate_below 0.01
moly alert add proposal_new
moly alert add balance_below 5.0 --channel webhook
moly alert list
moly alert remove <id>
moly alert channels --telegram-token <token> --telegram-chat <chat-id>
moly alert channels --webhook-url https://example.com/hook

Alert types: balance_below, balance_above, reward_rate_below, reward_rate_above, withdrawal_ready, proposal_new, conversion_rate_above, conversion_rate_below, reward_delta, governance_expiring.

Monitor

Background daemon that checks alert conditions every 30s.

moly monitor start
moly monitor status
moly monitor stop

Ledger (Activity Log)

moly ledger list                              # recent entries
moly ledger list --tool stake_eth --limit 10
moly ledger list --since 2025-01-01
moly ledger stats
moly ledger export --format json
moly ledger export --format csv

MCP Server

Moly also runs as an MCP server exposing 28 tools for staking, withdrawals, wrapping, governance, bridging, alerts, and position tracking.

moly --server

All write operations support dry_run and are gated by your configured bounds.

Requirements

Node.js >= 18

License

MIT