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

@formstatus/mcp

v1.0.0

Published

FormStatus MCP server — connect your FormStatus account to any AI assistant

Readme

@formstatus/mcp

Connect your FormStatus account to any MCP-compatible AI assistant (Claude Desktop, Cursor, etc.) to monitor form health, diagnose failures, and trigger test runs — all through natural language.

Quick Start

1. Get your API key

Log into your FormStatus account → Account Settings → API Keys → Generate Key.

2. Configure your AI client

Claude Desktop

Edit claude_desktop_config.json:

{
  "mcpServers": {
    "formstatus": {
      "command": "npx",
      "args": ["-y", "@formstatus/mcp"],
      "env": {
        "FORMSTATUS_API_KEY": "1|your-api-key-here"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "formstatus": {
      "command": "npx",
      "args": ["-y", "@formstatus/mcp"],
      "env": {
        "FORMSTATUS_API_KEY": "1|your-api-key-here"
      }
    }
  }
}

Any MCP-compatible client

{
  "mcpServers": {
    "formstatus": {
      "command": "npx",
      "args": ["-y", "@formstatus/mcp"],
      "env": {
        "FORMSTATUS_API_KEY": "1|your-api-key-here"
      }
    }
  }
}

3. Start asking

  • "What forms are currently failing?"
  • "Why is my contact form on example.com failing?"
  • "Show me the health overview of all my monitored forms"
  • "Run a test on form 39"

Available Tools

| Tool | Description | |------|-------------| | list_forms | List all monitored forms (filterable by status) | | get_form | Get details about a specific form | | get_form_checks | Get check history for a form | | get_form_report | Get full diagnostic report for a check | | get_dashboard | Dashboard overview with metrics and trends | | get_failed_forms | List currently failing forms | | diagnose_form | Comprehensive diagnostic for a single form | | trigger_test | Trigger a manual test run |

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | FORMSTATUS_API_KEY | Yes | — | Your API key from FormStatus settings | | FORMSTATUS_API_URL | No | https://app.formstatus.co | API base URL (change for self-hosted/staging) |

Local Development

# Install dependencies
npm install

# Build
npm run build

# Run with local API
FORMSTATUS_API_KEY="your-key" \
FORMSTATUS_API_URL="http://localhost:8080" \
node dist/index.js

Security

  • Your API key is scoped to your account only
  • Keys are read-only (can view data) plus test-trigger capability
  • You can revoke keys at any time from your FormStatus settings
  • No other users' data is accessible