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

@vextlabs/theron-mcp

v0.2.1

Published

MCP server for JUWEL. Call JUWEL directly from any MCP client (Claude Desktop, Cursor, IDEs, agents): ask a specialist, commission a real work product, and verify its signed receipt offline. From Vext Labs.

Readme

@vextlabs/theron-mcp

Call JUWEL from any AI tool. An MCP server that gives any MCP client — Claude Desktop, Cursor, an IDE, an agent runtime — direct access to JUWEL, Vext Labs' council of domain specialists over one auditable base.

Four tools:

| Tool | What it does | |------|--------------| | theron_ask | Ask JUWEL (optionally a specialist lane) a question — coding, legal drafting, admin, medical literature, data analysis, design, deep research. | | theron_specialists | List the specialist lanes you can target. | | theron_commission | Commission a real work product (doc, deck, sheet, code, design, campaign) via JUWEL's deliverable pipeline; returns a tracking URL. The finished artifact carries an offline-verifiable receipt. | | theron_verify_receipt | Fetch the signed Merkle proof for any JUWEL/STOA receipt so you can verify what JUWEL did offline, trusting no one. |

Install

Public chat needs no token. To commission deliverables to your account, set THERON_TOKEN (create one at https://tryvext.com/api-keys).

Claude Desktop

Add to claude_desktop_config.jsonmcpServers:

{
  "mcpServers": {
    "theron": {
      "command": "npx",
      "args": ["-y", "@vextlabs/theron-mcp"],
      "env": { "THERON_TOKEN": "vxk_live_..." }
    }
  }
}

Cursor

In ~/.cursor/mcp.json (or Settings → MCP):

{
  "mcpServers": {
    "theron": { "command": "npx", "args": ["-y", "@vextlabs/theron-mcp"], "env": { "THERON_TOKEN": "vxk_live_..." } }
  }
}

Then ask your assistant things like "Use theron to draft a mutual NDA" or "Ask theron-analyst to model this churn data" — the model will call theron_ask / theron_commission for you.

Honesty

The specialist handles are persona surfaces over the live JUWEL base today; deeper per-specialist weights are on the roadmap. Legal/medical lanes assist with drafting and literature — they are not legal or medical advice; review with a licensed professional.

Config

| Env | Default | Purpose | |-----|---------|---------| | THERON_TOKEN | — | Optional bearer; required for account-scoped deliverables. | | THERON_BASE_URL | https://tryvext.com | API base. |

Dependency-free: JSON-RPC 2.0 over stdio + fetch. Apache-2.0. From Vext Labs.