🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

logclaw-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logclaw-mcp-server

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

latest
Source
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

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

VariableRequiredDescription
LOGCLAW_API_KEYYesYour LogClaw project API key
LOGCLAW_ENDPOINTNoAuth proxy endpoint (default: https://ticket.logclaw.ai)

Tools

ToolDescription
logclaw_list_incidentsList and filter incidents by severity, state, service, or search query
logclaw_get_incidentGet full incident details — root cause, causal chain, evidence logs, traces, timeline, blast radius
logclaw_update_incidentTransition incident state (acknowledge, investigate, mitigate, resolve) or add a note
logclaw_search_logsSearch raw logs by service, level, time range, and query
logclaw_get_anomaliesGet recent anomaly detections (Z-score analysis on error rates)
logclaw_service_healthCheck 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

Keywords

logclaw

FAQs

Package last updated on 11 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts