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

otpless-cli

v2.1.0

Published

OTPless Integration Tool - CLI and MCP Server

Readme

OTPless CLI & MCP Server

Disclaimer: This is an unofficial, community-built tool and is not affiliated with, endorsed by, or maintained by OTPless. For official documentation and support, visit:

A CLI and MCP tool that lets AI agents (Claude Code, Codex, Cursor, Kiro) integrate OTPless authentication into your project — WhatsApp login, SNA, Phone OTP, Social OAuth, Magic Links, webhooks, and more.

How It Works

Install it, connect it to your AI agent, and tell the agent to integrate OTPless. The tool gives your agent access to bundled official docs, step-by-step scaffold instructions, verification playbooks, error lookups, and live testing — all without web search.

Quick Setup

1. Install the CLI

npm install -g otpless-cli

Or use it directly without installing:

npx otpless-cli detect

2. Add the MCP server to your AI tool

Claude Code — add to .mcp.json:

{
  "mcpServers": {
    "otpless": {
      "command": "npx",
      "args": ["-y", "-p", "otpless-cli", "otpless-cli-mcp"]
    }
  }
}

Cursor — add to .cursor/mcp.json
Kiro — add to .kiro/settings/mcp.json
(Same JSON as above)

Codex — uses the CLI directly, no MCP config needed.

3. (Optional) Add the agent skill

# Claude Code
mkdir -p .claude && cp node_modules/otpless-cli/skills/claude/SKILL.md .claude/SKILL.md

# Codex
mkdir -p .codex && cp node_modules/otpless-cli/skills/codex/SKILL.md .codex/SKILL.md

4. Tell your agent what you need

Just prompt it. Examples:

"Integrate OTPless SNA authentication into my React Native app. Use the otpless-cli to detect my stack, scaffold the integration, and verify it."

"Add WhatsApp login to my React app using OTPless headless SDK."

"Set up OTPless webhook verification in my FastAPI backend."

"I'm getting error SP40003 from SNA. Look it up with otpless-cli."

The agent will use the CLI/MCP tools to detect your stack, pull the right docs, scaffold the code, and verify the integration — all automatically.

What It Supports

| Category | Tech Stacks | Supported Flows | | --- | --- | --- | | Web Apps | React / Next.js, Angular, Vue.js, Vanilla JavaScript, Flutter Web | headless, prebuilt-ui, phone-otp, oauth, magic-link, sna | | Mobile Apps | React Native, Android Native, iOS Native, Flutter, Ionic, Compose Multiplatform (CMP) | headless, prebuilt-ui, phone-otp, oauth, magic-link, sna | | Backend APIs | Node.js / Express, FastAPI, Django, Flask, Laravel, Spring Boot, Go, Ruby on Rails | token-validation, id-token, webhook, phone-otp, oauth, magic-link, sna | | CMS Platforms | WordPress, Shopify, Magento | script/plugin template, token-validation, webhook |

Detailed Docs

For full setup instructions, CLI reference, and more:

Telemetry & Privacy

otpless-cli includes anonymous telemetry powered by PostHog to understand tool usage and improve error troubleshooting.

  • Privacy First: No file paths, secrets, API keys, code contents, or personal information (PII) are ever collected. Only command names, MCP tool calls, stack/flow parameters, Node/OS versions, and success/error status are recorded using an anonymous installation UUID.
  • PostHog Integration: Set your own PostHog API Key with otpless-cli telemetry set-key <your_key> or environment variable OTPLESS_POSTHOG_KEY.
  • Opt-Out: Easily disable telemetry at any time:
    # Check telemetry status
    npx otpless-cli telemetry status
    
    # Disable telemetry
    npx otpless-cli telemetry disable
    Telemetry also automatically respects standard environment variables: DO_NOT_TRACK=1, NO_TELEMETRY=1, or OTPLESS_TELEMETRY_DISABLED=1.