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

@nexflow/mcp-server

v1.0.8

Published

Model Context Protocol server for NexFlow — build, run, and monitor workflows from Claude Code

Readme

@nexflow/mcp-server

MCP server for NexFlow. Gives Claude Code (and any MCP client) 47 tools to build, run, and monitor everything in NexFlow without leaving your editor.

Prerequisites

  1. A running NexFlow instance
  2. A tenant API key — generate one at Settings → API Keys in the NexFlow dashboard

Setup (Claude Code)

Add to .mcp.json in your project root:

{
  "mcpServers": {
    "nexflow": {
      "command": "npx",
      "args": ["-y", "@nexflow/mcp-server"],
      "env": {
        "NEXFLOW_API_URL": "https://api.nexflow.app",
        "NEXFLOW_API_KEY": "nf_your_key_here"
      }
    }
  }
}

For a local NexFlow instance: "NEXFLOW_API_URL": "http://localhost:3000"

Available Tools (47)

Workflows

workflow_list · workflow_get · workflow_create · workflow_update · workflow_delete · workflow_activate · workflow_trigger · workflow_export

Executions

execution_list · execution_get · execution_list_steps · execution_get_logs · execution_retry · execution_replay · execution_cancel

Connectors

connector_list · connector_get · connector_create · connector_update · connector_delete · connector_test

Connector Marketplace

marketplace_list_templates · marketplace_install_template

Rules

rule_list · rule_get · rule_create · rule_update · rule_delete

Data Objects

data_object_list · data_object_get · data_object_create · data_object_update · data_object_delete

Lookup Tables

lookup_table_list · lookup_table_get · lookup_table_upsert · lookup_table_delete

Environments

environment_list · environment_get · environment_create

Schedules

schedule_list · schedule_get · schedule_create · schedule_delete

Webhooks

webhook_list · webhook_get · webhook_create · webhook_rotate_secret

PDF Templates

pdf_template_list · pdf_template_get · pdf_template_create

Email Templates (environment-scoped)

email_template_list · email_template_get · email_template_create

Monitoring

monitoring_dashboard · monitoring_list_alerts · monitoring_acknowledge_alert

Approvals

approval_list · approval_get · approval_decide

API Keys

api_key_list · api_key_generate · api_key_revoke

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | NEXFLOW_API_URL | Yes | Base URL of the NexFlow API | | NEXFLOW_API_KEY | Yes | Tenant API key (nf_... prefix) |