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

@simplens/mcp

v1.0.3

Published

Remote MCP server for SimpleNS notification orchestration engine

Readme

SimpleNS MCP Server

A Model Context Protocol (MCP) server for the SimpleNS notification engine. Allows AI assistants like Claude Desktop and Cursor to interact with your SimpleNS instance to send notifications, check analytics, and manage alerts.

Features

  • Streamable HTTP Transport: Local usage via npm package.

  • Stdio Transport: Local usage via command line/npm package.

  • Tool Set:

    • send_notification / send_batch_notification (supports templates and inline content)
    • get_send_schema — full schema docs with examples for AI agents
    • list_plugins
    • find_failures / retry_failure
    • list_alerts / resolve_alert

Installation

No installation is required when using npx.

Usage

Streamable HTTP (Local via npm package)

Run the server locally:

npx -y @simplens/mcp

The server starts default at port: 3001

Then point your MCP client at the local HTTP endpoint and pass headers on every request:

{
  "mcpServers": {
    "simplens-local-http": {
      "type": "streamable-http",
      "url": "http://localhost:3001/mcp",
      "headers": {
        "X-SimpleNS-API-Key": "your-ns-api-key",
        "X-SimpleNS-Core-URL": "http://localhost:3000",
        "X-SimpleNS-Dashboard-URL": "http://localhost:3002"
      }
    }
  }
}

Stdio (Local via npm package)

You can run the server locally if you have SimpleNS running locally.

Add to your MCP Client config:

{
  "mcpServers": {
    "simplens-local": {
      "command": "npx",
      "args": ["-y", "@simplens/mcp", "--stdio"],
      "env": {
        "NS_API_KEY": "your-local-api-key",
        "SIMPLENS_CORE_URL": "http://localhost:3000",
        "SIMPLENS_DASHBOARD_URL": "http://localhost:3002"
      }
    }
  }
}

Tools Reference

| Tool | Description | |------|-------------| | send_notification | Send a single notification via any channel (supports templates and inline content) | | send_batch_notification | Send batch notifications to multiple recipients | | get_send_schema | Get full request schema with examples — call before sending if unsure about format | | list_plugins | List installed plugins, channels, and their schemas | | find_failures | Find failed notifications with filters (channel, date, search) | | retry_failure | Retry a specific failed notification by ID | | list_alerts | List unresolved system alerts (ghost delivery, stuck processing) | | resolve_alert | Dismiss a specific system alert |