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

@conovo/mcp

v0.1.2

Published

Conovo MCP server — lets a coding agent integrate Conovo: register your payload schema, mint sandbox sessions, send test contracts, and read request logs and payload gaps.

Readme

@conovo/mcp

An MCP server that lets a coding agent integrate Conovo into your platform — and debug the integration afterwards.

Point Claude Code (or any MCP client) at it and say "integrate Conovo": the agent can read your data model, build and register your payload schema, mint sandbox sessions, drive test contracts through the real API, wire up webhooks, and read the request inspector when something 4xxes.

Setup

claude mcp add conovo -e CONOVO_SECRET_KEY=sk_test_… -- npx -y @conovo/mcp

Or in any MCP client config:

{
  "mcpServers": {
    "conovo": {
      "command": "npx",
      "args": ["-y", "@conovo/mcp"],
      "env": { "CONOVO_SECRET_KEY": "sk_test_…" }
    }
  }
}

Use an sk_test_ key while integrating — every session it mints is test mode end to end: simulated signing, nothing metered, nothing binds. CONOVO_API_URL overrides the API base (defaults to https://api.conovo.co).

Tools

| Tool | What it does | |---|---| | get_overview | Account status + live contract metrics | | get_payload_schema / register_payload_schema | Read / append the payload sample contract fields bind to | | infer_payload_schema | Propose a schema from a sample response, OpenAPI spec, or Prisma schema | | get_payload_gaps | Which fields keep missing from the payload — the schema backlog | | create_sandbox_session | A real /v1 token against the Sandbox workspace | | get_api_reference | Routes + summaries from the live OpenAPI doc | | list_requests | The request inspector — why a call failed, no bodies ever | | get_held_contracts | Contracts held by validation, with issue codes | | list_events | The content-free audit trail | | get_webhook / set_webhook / test_webhook | Outbound webhook config + a signed test ping |

What it deliberately cannot do

No tool touches a live contract, produces a document value, or returns contract content. The send path stays deterministic and human-gated — the agent integrates the product; it doesn't operate it.

License

MIT