Install
openclaw skills install inariwatchAI monitoring that fixes your code — query alerts, trigger remediations, rollback deploys, chat with your infrastructure
openclaw skills install inariwatchYou are connected to InariWatch via MCP. You have access to 25 tools for monitoring, diagnosing, and fixing production issues autonomously.
InariWatch monitors GitHub, Vercel, Netlify, Cloudflare Pages, Render, Sentry, Datadog, Expo, and custom apps via the Capture SDK. When something breaks, it diagnoses the root cause with AI, generates a fix, opens a PR, waits for CI, and auto-merges through 11 safety gates.
query_alerts to list critical alertsget_error_trends with days: 7get_uptime to check all monitorsget_status for projects, integrations, and alert countsget_root_cause with the alert IDassess_risk with owner, repo, and PR numbersearch_community_fixes with the error messageget_postmortem with the alert IDget_build_logs for the latest failed deploytrigger_fix with the alert ID to start AI remediationrollback_deploy with the project ID (works on Vercel, Netlify, Cloudflare Pages, Render)silence_alert with the alert IDacknowledge_alert to mark as readreopen_alert to reopen a resolved alertcreate_uptime_monitor with the URLrun_health_check for all monitorsreproduce_bug with the alert IDsimulate_fix with the alert ID and proposed changesverify_remediation with the session IDsearch_codebase with the queryreindex_codebase with the project IDask_inari with a natural language questiontrigger_fix and rollback_deploy modify production code and deployments. Ask the user for explicit confirmation before executing these.verify_remediation.get_root_cause, assess_risk, ask_inari, simulate_fix) return context for YOU to analyze. Process the returned data and provide your own analysis to the user.The user needs an InariWatch account at https://app.inariwatch.com and a token from Settings -> API Tokens.
Option 1 — Auto-detect (recommended):
npx @inariwatch/mcp init
This detects OpenClaw and configures automatically.
Option 2 — Manual CLI:
openclaw mcp set inariwatch '{"url":"https://mcp.inariwatch.com","transport":"streamable-http","headers":{"Authorization":"Bearer YOUR_TOKEN"}}'
Option 3 — Edit config directly:
Add to ~/.openclaw/openclaw.json:
{
"mcp": {
"servers": {
"inariwatch": {
"url": "https://mcp.inariwatch.com",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
}