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

@trugamr/sonarr-mcp

v0.1.0

Published

MCP server exposing the Sonarr SDK to AI agents as tools (stdio + HTTP).

Readme

@trugamr/sonarr-mcp

An MCP server that exposes Sonarr to AI agents as tools, built on the @trugamr/sonarr Effect SDK. It speaks two transports from one binary:

  • stdio (default) — the host spawns the server as a subprocess. This is how Claude Desktop / Claude Code run a local server.
  • Streamable HTTP — a long-running service on POST /mcp, for self-hosting one server that clients connect to over the network.

Configuration

The Sonarr connection is read from the environment (validated at startup — the server refuses to start if either is missing):

| Variable | Required | Description | | ----------------- | -------- | ------------------------------------------------------------- | | SONARR_BASE_URL | yes | Base URL of the Sonarr instance, e.g. http://localhost:8989 | | SONARR_API_KEY | yes | Sonarr API key (Settings → General) |

Usage

The sonarr-mcp bin selects a transport by subcommand. A bare invocation is stdio, so existing host configs need no subcommand.

stdio (default)

Register it with an MCP host. For Claude Desktop / Claude Code:

{
  "mcpServers": {
    "sonarr": {
      "command": "node",
      "args": ["/abs/path/to/packages/sonarr-mcp/dist/index.mjs"],
      "env": {
        "SONARR_BASE_URL": "http://localhost:8989",
        "SONARR_API_KEY": "your-api-key",
      },
    },
  },
}

Streamable HTTP

SONARR_BASE_URL=http://localhost:8989 SONARR_API_KEY=your-api-key \
  sonarr-mcp http --port 3000

The endpoint is POST /mcp. Each request is its own stateless JSON-RPC session (no Mcp-Session-Id). Point an HTTP-capable MCP client at http://<host>:3000/mcp.

Self-hosting & security

There is no application-level authentication — the trust boundary is the network. Run it behind a VPN (Tailscale, WireGuard, …) or a firewall, never exposed to the public internet.

The server binds 127.0.0.1 by default, so it is unreachable off the host until you opt into a wider bind:

sonarr-mcp http --host 0.0.0.0 --port 3000   # reachable on the LAN/VPN interface

CLI reference

| Command | Description | | --------------------------------- | ------------------------------ | | sonarr-mcp / sonarr-mcp stdio | Run over stdio (default) | | sonarr-mcp http | Run the Streamable HTTP server |

| Flag (http only) | Env fallback | Default | Description | | ------------------ | ------------ | ----------- | ------------ | | --host | HOST | 127.0.0.1 | Bind address | | --port | PORT | 3000 | Listen port |

Tools

| Tool | Description | | ------------------- | -------------------------------------------------------------------------------------------- | | get_system_status | Sonarr instance status — version, runtime, OS, database, and authentication info. Read-only. |