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

starkshield-mcp

v1.0.1

Published

Starkzap-powered MCP server: Starknet transactions, quantum risk scanning, confidential transfers.

Readme

starkshield-mcp

Starkzap-powered Model Context Protocol server: Starknet wallet operations, deterministic quantum risk scanning, Vesu lending, staking, swaps (AVNU), and Tongo confidential transfers.

Install

npm install -g starkshield-mcp

Or run from source:

cd starkshield-mcp
npm install
npm run build
node dist/index.js

Configure

See repository root .env.example (or set variables in your MCP host).

  • Dev signer: STARKNET_PRIVATE_KEY
  • Privy: PRIVY_WALLET_ID, PRIVY_PUBLIC_KEY, PRIVY_SIGN_URL
  • Network: STARKNET_NETWORK=mainnet|sepolia
  • Paymaster (optional): AVNU_API_KEY
  • Tongo (optional): TONGO_PRIVATE_KEY, TONGO_CONTRACT
  • Automation (dangerous): STARKSHIELD_AUTO_CONFIRM=1 skips preview/confirm for destructive tools
  • HTTP transport (optional): STARKSHIELD_HTTP_PORT=8787 — serves MCP on POST /mcp and GET /status

Claude Desktop

{
  "mcpServers": {
    "starkshield": {
      "command": "npx",
      "args": ["-y", "starkshield-mcp"],
      "env": {
        "STARKNET_NETWORK": "mainnet",
        "STARKNET_PRIVATE_KEY": "0x..."
      }
    }
  }
}

Quantum safety

quantum_risk_scan combines fixed cryptographic architecture facts (no LLM inference inside the tool) with optional Starknet JSON-RPC checks (contract deployment, address nonce). The assistant should explain the structured JSON, not invent new risk levels.

Core health tools

  • server_health: returns runtime readiness (network, signer mode, confidential feature flags, transport mode).
  • wallet_health: validates wallet connectivity and can optionally run deployment readiness checks.
  • server_capabilities: returns full tool/resource catalog + environment guide.

These are useful first calls before destructive tools in both stdio and HTTP transport modes.

Capability resource

  • URI: starkshield://meta/capabilities
  • Includes:
    • runtime mode (network, signerMode, confidentialConfigured)
    • full tool catalog
    • resource catalog
    • env setup guide

Build phases (implementation checklist)

  1. Phase 1 - Runtime health
    • Add server and wallet health tools.
    • Extend HTTP /status with runtime configuration signals.
  2. Phase 2 - Capability discovery
    • Add server_capabilities tool.
    • Add starkshield://meta/capabilities resource.
    • Keep centralized tool/resource/env catalog.
  3. Phase 3 - Packaging readiness
    • Ensure clean build scripts (build, check, clean).
    • Verify package files include only dist + docs.
    • Validate both stdio and HTTP modes before publish.
  4. Phase 4 - Functional verification
    • Run MCP unit tests (npm run test:run).
    • Run full check (npm run check) before packaging.

Publish to npm

Run these steps from starkshield-mcp:

  1. Authenticate npm
    • npm login
  2. Clean + build
    • npm run clean
    • npm run build
    • npm run test:run
  3. Sanity check package contents
    • npm pack --dry-run
  4. Version bump
    • npm version patch (or minor / major)
  5. Publish
    • npm publish --access public
  6. Verify
    • npm view starkshield-mcp version
    • npx -y starkshield-mcp --help (or run in MCP host)

License

MIT