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

create-sentinelx

v0.1.6

Published

Scaffold a full x402 paid-agent starter project focused on Solana Devnet payments via PayAI, with TAP verification at the gateway and a research service.

Readme

create-sentinelx

Scaffold a full x402 paid-agent starter project focused on Solana Devnet payments via PayAI, with TAP verification at the gateway and a research service.

Usage

npx create-sentinelx@latest <app-name> [--onchain]
  • --onchain adds optional on-chain tools for the XMCP app.

What you get:

  • xmcp/ – XMCP app with paid tools (HTTP /mcp)
  • gateway-express/ – PayAI Solana devnet gateway with paid /research and /mcp/execute, TAP optional
  • research-python-service/ – Research microservice using Parallel beta.search with automatic Task API fallback
  • tap-python-server/ – TAP signer (/tap/keys/:keyId, /tap/sign) for Visa-style RFC 9421 headers
  • client-fetch/ – Generic paid client with TAP support and flexible question/JSON body input
  • client-solana/ – Minimal Solana-devnet example client
  • client-inspect/ – Simple inspector client for debugging responses

Next steps

  1. XMCP app (tools server)
cd xmcp && npm i && npm run dev
# Note the printed HTTP tools URL for /mcp
  1. Research service (Parallel beta.search + fallback)
cd ../research-python-service
pip install -r requirements.txt
cp .env.example .env
# set PARALLEL_API_KEY
# optionally set PARALLEL_BETAS=search-extract-2025-10-10 if entitled
# optionally set PARALLEL_BASE_URL (default https://api.parallel.ai)
uvicorn main:app --reload --port 4022
  1. TAP Python server (optional for TAP signing)
cd ../tap-python-server
pip install -r requirements.txt
cp .env.example .env
# set ED25519_PRIVATE_KEY (base64 seed) and ED25519_PUBLIC_KEY
uvicorn main:app --reload --port 4001
  1. Gateway (Solana devnet payments via PayAI + optional TAP verify)
cd ../gateway-express
npm i
cp .env.example .env
# FACILITATOR_URL=https://facilitator.payai.network
# NETWORK=solana-devnet
# ADDRESS=YOUR_SOL_ADDRESS_BASE58
# XMCP_URL=http://localhost:3001/mcp
# RESEARCH_URL=http://localhost:4022/research
# REQUIRE_TAP=true   # to enforce TAP
# TAP_DEBUG=true     # to see detailed verification logs
npm run dev   # http://localhost:4021
  1. Clients
  • client-fetch (generic paid client with TAP)
cd ../client-fetch
npm i
cp .env.example .env
# Set PRIVATE_KEY, RESOURCE_SERVER_URL=http://localhost:4021, ENDPOINT_PATH=/research
# Optional: USE_TAP=true, TAP_BASE_URL=http://localhost:4001, QUESTION or JSON_BODY
npm run dev -- "When was the United Nations established? Prefer UN's websites."
  • client-solana (minimal Solana devnet example)
cd ../client-solana
npm i
cp .env.example .env
npm run dev
  • client-inspect (simple inspector)
cd ../client-inspect
npm i
cp .env.example .env
npm run dev

Notes

  • The gateway uses x402-express for AcceptSpec and payment middleware against the PayAI facilitator.
  • The research service calls Parallel /v1/beta/search with the parallel-beta header, and falls back to the Task API if beta access is unavailable.
  • For TAP, set ED25519 keypair (base64 seed/public) in tap-python-server/.env. The gateway verifies signatures per RFC 9421 (Visa-style) and logs with x-tap-debug-id correlation when TAP_DEBUG=true.
  • Requires Node 20+.