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

@zellifyapp/mcp

v0.3.1

Published

An MCP server that gives Claude Code full context about your Zellify funnels so it can build, test, and debug your webhook integration.

Readme

@zellifyapp/mcp

An MCP server that gives Claude Code full context about your Zellify funnels — variable names, payload shapes, integration status — so it can build, test, and debug your webhook integration without guessing.

Install

  1. Generate an API key in Zellify Dashboard → Settings → Developer.

  2. Register the MCP server, then run the init command to copy the skill + slash command into your project:

    claude mcp add zellify -e ZELLIFY_API_KEY=YOUR_API_KEY -- npx -y @zellifyapp/mcp@latest
    npx -y @zellifyapp/mcp@latest init

    The init command is pure Node, so it works on macOS, Linux, and Windows (PowerShell, cmd.exe, and Git Bash) without shell-specific tweaks. Re-run it any time to update the skill files to the latest version.

    The API key is passed as an environment variable (-e ZELLIFY_API_KEY=…), not on the command line — argv-passed secrets leak to ps, shell history, and process inspection. If you previously installed with --api-key, rotate that key in the dashboard and re-add with the form above.

  3. Fully quit and reopen Claude Code (⌘Q on macOS — closing the window is not enough; the MCP server registration is loaded once at startup). Then run /integrationcheck in Claude Code. Claude will analyze your codebase, ask any clarifying questions, pick the easiest integration path, and produce a complete plan you can approve and execute in one session.

Available tools

| Tool | Description | |------|-------------| | validate_setup | Verify the MCP is configured: env var present, API key valid, backend reachable, funnels published. Run this first if anything else fails. | | list_funnels | List all funnels with IDs, names, published status, and last updated date | | get_funnel_schema | Get a funnel's variables — names, question types, option ID-to-label mappings | | get_example_payload | Get a realistic example webhook payload and TypeScript interface for a funnel | | get_integrations | Check configured integrations, payment provider, registration webhook URL, and active campaign count | | send_test_webhook | Fire a signed test webhook to your configured endpoint and report the result |

Example prompts

Build me a webhook handler for my Zellify funnel
Send a test webhook to my endpoint and debug any errors
Check my integration setup — is my webhook configured?
Generate TypeScript types and a Zod schema for my funnel's payload

Configuration

| Variable | Required | Description | |----------|----------|-------------| | ZELLIFY_API_KEY | Yes | MCP API key from the Zellify Dashboard | | ZELLIFY_API_URL | No | API base URL (default: https://api.zellify.app) |

Links