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

logclaw-mcp-server

v1.0.6

Published

LogClaw MCP Server — expose incidents, logs, and anomalies to AI coding tools

Readme

LogClaw MCP Server

Connect your AI coding tools to LogClaw incidents, logs, and anomalies via the Model Context Protocol.

Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.

Quick start

npx logclaw-mcp-server

Setup

Claude Code

Add to ~/.claude.json:

{
  "mcpServers": {
    "logclaw": {
      "command": "npx",
      "args": ["-y", "logclaw-mcp-server"],
      "env": {
        "LOGCLAW_ENDPOINT": "https://ticket.logclaw.ai",
        "LOGCLAW_API_KEY": "lc_proj_..."
      }
    }
  }
}

Cursor / Windsurf

Add to .cursor/mcp.json or .windsurf/mcp.json:

{
  "mcpServers": {
    "logclaw": {
      "command": "npx",
      "args": ["-y", "logclaw-mcp-server"],
      "env": {
        "LOGCLAW_ENDPOINT": "https://ticket.logclaw.ai",
        "LOGCLAW_API_KEY": "lc_proj_..."
      }
    }
  }
}

Environment variables

| Variable | Required | Description | |----------|----------|-------------| | LOGCLAW_API_KEY | Yes | Your LogClaw project API key | | LOGCLAW_ENDPOINT | No | Auth proxy endpoint (default: https://ticket.logclaw.ai) |

Tools

| Tool | Description | |------|-------------| | logclaw_list_incidents | List and filter incidents by severity, state, service, or search query | | logclaw_get_incident | Get full incident details — root cause, causal chain, evidence logs, traces, timeline, blast radius | | logclaw_update_incident | Transition incident state (acknowledge, investigate, mitigate, resolve) or add a note | | logclaw_search_logs | Search raw logs by service, level, time range, and query | | logclaw_get_anomalies | Get recent anomaly detections (Z-score analysis on error rates) | | logclaw_service_health | Check LogClaw pipeline health status and latency |

Example prompts

Once connected, you can ask your AI assistant:

  • "What incidents are open right now?"
  • "Show me the root cause for TICK-0037"
  • "Search for ERROR logs from auth-service in the last 30 minutes"
  • "Are there any critical anomalies?"
  • "Acknowledge TICK-0042 and add a note that I'm looking into it"

Self-hosted

If you're running LogClaw on your own infrastructure, point LOGCLAW_ENDPOINT to your auth proxy:

LOGCLAW_ENDPOINT=https://logclaw.internal.company.com LOGCLAW_API_KEY=lc_proj_... npx logclaw-mcp-server

License

MIT