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

@waniwani/cli

v0.0.43

Published

WaniWani CLI for MCP development workflow

Readme

@waniwani/cli

CLI for app.waniwani.ai - MCP development workflow.

Warning

This is pre-alpha software. Here's what that means:

  • Everything will break
  • APIs will change without notice
  • Commands will be renamed, removed, or completely redesigned
  • Your config files might get nuked
  • We will not apologize

If you're not comfortable with that, wait for v1.0. If you open an issue complaining about breaking changes during pre-alpha, we will close it.

What is WaniWani?

WaniWani is the Shopify of MCP servers — enabling quote-based businesses that sell complex services to deploy AI agents that capture leads, qualify customers, and generate quotes.

This CLI is how you interact with WaniWani from your terminal.

Installation

# npm
npm install -g @waniwani/cli

# pnpm
pnpm add -g @waniwani/cli

# yarn
yarn global add @waniwani/cli

# bun
bun add -g @waniwani/cli

Requires Node.js 20 or later.

Usage

# Authenticate
waniwani login

# Create an MCP project
waniwani mcp create my-server

# Send tasks to Claude
waniwani task "Add a weather tool"

# Test your tools
waniwani mcp test

# Deploy to GitHub + Vercel
waniwani mcp publish

Commands

| Command | Description | |---------|-------------| | login | Authenticate with WaniWani | | logout | Clear local credentials | | mcp create <name> | Create a new MCP project | | mcp clone <name> | Clone an existing MCP locally | | mcp list | List your MCPs | | mcp use <name> | Select active MCP | | mcp status | Show current MCP status | | mcp test [tool] | Test MCP tools | | mcp publish | Publish to GitHub + Vercel | | mcp stop | Stop and cleanup sandbox | | task <prompt> | Send task to Claude | | org list | List organizations | | org switch | Switch organization |

Configuration

The CLI stores auth tokens and settings in ~/.waniwani/.

API URL

The API URL can be configured in three ways (in order of priority):

  1. Environment variable: WANIWANI_API_URL
  2. Config file: ~/.waniwani/config.jsonapiUrl
  3. Default: https://app.waniwani.ai

Using environment variable

WANIWANI_API_URL=https://staging.waniwani.ai waniwani login

Using config file

Edit ~/.waniwani/config.json:

{
  "apiUrl": "https://staging.waniwani.ai"
}

License

MIT