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

hotwash-mcp

v0.3.0

Published

MCP server for Hotwash - drive incident response playbooks (start runs, advance steps, attach evidence) and review the Wazuh ingest suggestion queue from any MCP-capable LLM

Readme

hotwash-mcp

Model Context Protocol server for Hotwash. Lets any MCP-capable LLM list playbooks, start runs against incidents, advance steps, attach evidence, query the timeline, and review the Wazuh ingest suggestion queue.

Version 0.3.0 adds hotwash_dismiss_suggestion, completing the suggestion queue triage surface (list / get / accept / dismiss). Dismiss anchors the cooldown for that fingerprint, suppressing immediate re-fires of the same alert.

What it exposes

| Tool | Purpose | |------|---------| | hotwash_list_playbooks | Browse the library, filter by category, tag, or search | | hotwash_get_playbook | Fetch the full graph (nodes + edges) for one playbook | | hotwash_start_run | Begin an execution from a playbook + incident title (+ optional context payload) | | hotwash_query_run | Get current run state, optionally including the timeline | | hotwash_advance_step | Update one step: status, assignee, append a note, or record a decision | | hotwash_attach_artifact | Upload text or base64 artifact to a step | | hotwash_cancel_run | Mark a run abandoned (requires confirm: true) | | hotwash_list_suggestions | List Wazuh ingest suggestions, filter by state or mapping_id (read-only) | | hotwash_accept_suggestion | Accept a pending suggestion, creating an Execution (requires confirm: true) | | hotwash_dismiss_suggestion | Dismiss a pending suggestion and anchor its cooldown (requires confirm: true) |

Install

npm install -g hotwash-mcp

Or run directly with npx hotwash-mcp once published.

Configuration

Two environment variables:

| Variable | Required | Default | Notes | |----------|----------|---------|-------| | HOTWASH_URL | no | http://localhost:8000 | Base URL of the Hotwash API | | HOTWASH_API_KEY | yes if API auth is on | - | Sent as X-API-Key | | HOTWASH_TIMEOUT | no | 30 | Request timeout in seconds |

Client setup

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "hotwash": {
      "command": "npx",
      "args": ["-y", "hotwash-mcp"],
      "env": {
        "HOTWASH_URL": "http://localhost:8000",
        "HOTWASH_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add hotwash -e HOTWASH_URL=http://localhost:8000 -e HOTWASH_API_KEY=your-api-key -- npx -y hotwash-mcp

OpenClaw

In ~/.openclaw/openclaw.json under mcpServers:

"hotwash": {
  "command": "npx",
  "args": ["-y", "hotwash-mcp"],
  "env": {
    "HOTWASH_URL": "http://localhost:8000",
    "HOTWASH_API_KEY": "your-api-key"
  }
}

Hermes Agent

In hermes.toml:

[mcp.servers.hotwash]
command = "npx"
args = ["-y", "hotwash-mcp"]
env = { HOTWASH_URL = "http://localhost:8000", HOTWASH_API_KEY = "your-api-key" }

Codex CLI

In ~/.codex/config.toml:

[mcp_servers.hotwash]
command = "npx"
args = ["-y", "hotwash-mcp"]
env = { HOTWASH_URL = "http://localhost:8000", HOTWASH_API_KEY = "your-api-key" }

Example session

You: List the incident response playbooks we have
LLM: (calls hotwash_list_playbooks)
LLM: We have 4 playbooks. Want me to start a run against one for an active incident?

You: Yes, the Wazuh SOC playbook for "Suspicious login from PROD-DB-01"
LLM: (calls hotwash_start_run with playbook_id and incident_title)
LLM: Started execution #12. The first phase is "Detection". The first step is "Identify
     affected systems" - want me to mark it in_progress and capture what you find?

You: Yes, mark it in progress. I just pulled the Wazuh agent inventory; here it is...
LLM: (calls hotwash_advance_step status=in_progress, then hotwash_attach_artifact
     filename=wazuh-inventory.json text=...)

Running locally

git clone https://github.com/solomonneas/hotwash.git
cd hotwash/mcp
npm install
npm run build
HOTWASH_URL=http://localhost:8000 HOTWASH_API_KEY=dev-key node dist/index.js

The server speaks MCP over stdio. To smoke-test, point a compatible client at the built binary.

License

MIT - see the root LICENSE.