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

@funnelpulse/mcp

v0.1.1

Published

Thin MCP stdio wrapper over the Funnel Pulse API

Downloads

295

Readme

Funnel Pulse MCP

@funnelpulse/mcp is the thin local MCP wrapper over the Funnel Pulse API.

It does not contain Funnel Pulse business logic. It translates MCP tool calls into authenticated HTTP requests against the public API, so the durable contract remains the Funnel Pulse API rather than a second hosted control plane.

Who this is for

Use this package when you want Claude, VS Code, Cursor, Windsurf, or another MCP-capable client to work with your Funnel Pulse account through a local MCP process.

The local MCP process stays thin:

  • it authenticates with your Funnel Pulse API key
  • it exposes MCP tools to your AI client
  • it forwards those tool calls to the Funnel Pulse API

Requirements

  • Node.js 20+
  • a Funnel Pulse API key
  • optional: FUNNEL_PULSE_API_URL if you are not using the default API base URL

Quick start

Run without a permanent install:

npx -y @funnelpulse/mcp

Or install it globally:

npm install -g @funnelpulse/mcp
fp-mcp

Environment variables

  • FUNNEL_PULSE_API_URL defaults to http://localhost:5095
  • FUNNEL_PULSE_API_KEY is required

Client configuration

Most MCP clients now provide a UI or CLI command for adding servers. When they ask for the command, arguments, and environment variables, use these values:

  • command: npx
  • args: -y @funnelpulse/mcp
  • env:
    • FUNNEL_PULSE_API_URL=https://api.funnelpulse.io
    • FUNNEL_PULSE_API_KEY=fpsa_...

If your client still uses a JSON config file, this is the server entry to paste in:

{
  "mcpServers": {
    "funnel-pulse": {
      "command": "npx",
      "args": ["-y", "@funnelpulse/mcp"],
      "env": {
        "FUNNEL_PULSE_API_URL": "https://api.funnelpulse.io",
        "FUNNEL_PULSE_API_KEY": "fpsa_..."
      }
    }
  }
}

If you install the package globally instead of using npx, the same entry becomes:

{
  "mcpServers": {
    "funnel-pulse": {
      "command": "fp-mcp",
      "env": {
        "FUNNEL_PULSE_API_URL": "https://api.funnelpulse.io",
        "FUNNEL_PULSE_API_KEY": "fpsa_..."
      }
    }
  }
}

Available tools

  • funnels.list
  • funnels.get
  • flowtrace.map.get
  • flowtrace.map.discover
  • flowtrace.settings.update
  • flowtrace.runs.list
  • flowtrace.run.get
  • flowtrace.run.queue

What to ask your AI client

After the MCP server is connected, common requests look like this:

  • "List my Funnel Pulse funnels"
  • "Get the FlowTrace map for funnel <id>"
  • "Enable FlowTrace protection for funnel <id> with a daily schedule"
  • "Queue a FlowTrace run for funnel <id>"
  • "Show me the latest FlowTrace runs for funnel <id>"

Troubleshooting

  • If the MCP client says the process could not be started, verify Node.js 20+ is installed and available on your PATH.
  • If tool calls fail with authentication errors, verify FUNNEL_PULSE_API_KEY is present and current.
  • If tool calls fail with connection errors, verify FUNNEL_PULSE_API_URL points to the correct Funnel Pulse environment.
  • If the MCP server starts but no useful data comes back, confirm the API key belongs to the organization you expect.

Development

cd packages/mcp
npm install
npm run build