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

@bvdm/strap

v0.1.1

Published

Bootstrap your agents with context, skills, and keys from the terminal.

Readme

Strap CLI

The first-party terminal client for Strap. Strap bootstraps your agents with context, skills, and keys through the same OAuth-protected MCP server used by Claude, Codex, ChatGPT, Cursor, and other integrations.

The CLI discovers tools, resources, and prompts from the live server, so new capabilities appear without a matching CLI release.

Install

npm install --global @bvdm/strap
strap

You can also run Strap without installing it:

npx @bvdm/strap

The first run opens Strap's OAuth screen in your browser. Approve the connection, then return to the terminal.

Commands

strap login
strap logout
strap status
strap doctor
strap tools
strap call read_creed
strap call creed_search --query "current priorities" --limit 5
strap resources
strap resource creed://profile
strap prompts
strap prompt introduce-me

read_creed, the creed_* tool names, and creed://profile are stable MCP compatibility identifiers. The product and CLI are Strap.

Run strap with no arguments for an interactive terminal that discovers the live tool schema and prompts for required fields.

Every MCP tool is also available directly by its exact name:

strap creed_get_section --section-id goals

For scripts and coding agents, use JSON mode:

strap --agent codex tools --json
strap --agent codex call creed_search --args '{"query":"pricing","limit":5}' --json
printf '%s' '{"sectionId":"goals"}' | strap --agent codex call creed_get_section --json

JSON is written to stdout and diagnostics are written to stderr. Interactive formatting and ANSI color are disabled outside a terminal. Commands copied from strap.bvdm.ai/connections include --agent so the dashboard can attribute CLI use. Omit it for unattributed manual use.

Self-hosted servers

Use a server for one command:

strap --server http://localhost:3000/mcp doctor

Or save it:

strap config set server https://your-strap.example/mcp

STRAP_MCP_URL can also set the server. HTTPS is required except on localhost. STRAP_CONFIG_DIR overrides the platform configuration directory.

Strap keeps its configuration and credentials separate from creed-cli. It does not read or migrate legacy CLI credentials automatically.

Security and exit codes

Strap CLI uses OAuth 2.1 Dynamic Client Registration and PKCE. It never asks you to copy an API token. Credentials are stored per server in the platform configuration directory with restrictive filesystem permissions and are never printed. strap logout attempts RFC 7009 revocation before removing local credentials.

  • 0: command completed successfully
  • 1: runtime, network, or authorization failure
  • 2: invalid command or arguments
  • 3: the MCP tool returned an error result

Set NO_COLOR=1 to disable terminal color.