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

wasper-cli

v0.3.4

Published

Host an MCP server + API proxy from any OpenAPI spec. Like Drizzle Studio, but for APIs.

Readme

wasper-cli

A local CLI daemon + MCP server + API proxy for your OpenAPI specs.

Install

macOS / Linux

curl -fsSL https://studio.stroke.click/install.sh | sh

Windows — open PowerShell:

irm https://studio.stroke.click/install.ps1 | iex

npm / Bun

npm install -g wasper-cli
bun add -g wasper-cli

Quick start

# Start daemon in background (returns to your shell immediately)
wasper up --url https://petstore.swagger.io/v2/swagger.json

# Run a second instance on a different port
wasper up --url https://api2.example.com/openapi.json --port 3389

# List all running instances
wasper ps

# Check status
wasper status

# Stop all
wasper down --all

Commands

Daemon

wasper up [--url <spec>] [--port <port>]   Start daemon in background
wasper down [--port <port>]                Stop one instance
wasper down --all                          Stop all instances
wasper ps                                  List all running instances
wasper status [--port <port>]              Status of one or all
wasper logs [-f] [--port <port>]           Tail server logs

Spec

wasper spec <url> [--port <port>]          Load new spec on running daemon
wasper reload [--port <port>]              Hot-reload current spec
wasper ls                                  List saved spec history
wasper use <n|url> [--port <port>]         Restart with a saved spec
wasper rm  <n|url>                         Remove spec from history

Features (toggle on the running daemon)

wasper mcp      [on|off] [--port <port>]
wasper proxy    [on|off] [--port <port>]
wasper ai       [on|off] [--port <port>]
wasper readonly [on|off] [--port <port>]

Auth

wasper auth                   List saved auth profiles
wasper auth use <name>        Switch active profile
wasper auth none              Disable auth

System service

wasper service install [--port <port>] [--url <spec>]
wasper service uninstall
wasper service start | stop | status | logs

Other

wasper update          Update to latest version
wasper help            Full command reference
wasper --version       Print version

Options

| Flag | Env var | Default | |---|---|---| | --url | WASPER_SPEC_URL | — | | --port | WASPER_PORT | 3388 | | --host | WASPER_HOST | 0.0.0.0 | | --origin | WASPER_ORIGIN | — | | --token | WASPER_TOKEN | — | | --no-mcp | — | MCP on | | --no-proxy | — | proxy on | | --no-ai | — | AI on | | --readonly | — | off |

Foreground / REPL mode

wasper start --url <spec>   # interactive REPL with slash commands

Press / and type: /mcp on|off · /proxy on|off · /auth use <role> · /token new · /tail · /help