You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MCP server that checks the live status of 4066 software services in real time. Ask your AI agent "is GitHub down?" or "what's wrong with Sentry?" — and get a live answer pulled directly from official status pages, including full incident detail when something is broken.
Install:npx -y github:jabbawocky/statuscraft (no API key needed) Works with: Claude Desktop, Claude Code, Cursor, Windsurf, any MCP-compatible client
What it does
StatusCraft gives your AI client 5 tools that fetch live status from 4066 major services:
Tool
What it does
get_status
Check one service — returns normalized status + incident detail when non-operational
get_all_status
Check all 4066 services at once, grouped by status (cached 60s)
list_services
List all tracked services with IDs and tags — filter by category
check_multiple
Check a specific list of services in parallel
refresh_status
Force a live re-fetch, bypassing the 60s cache — useful during active incidents
Incident detail
When a service is non-operational, StatusCraft automatically fetches the incidents API and returns structured detail alongside the status:
{
"id": "sentry",
"name": "Sentry",
"status": "degraded",
"description": "Partially Degraded Service",
"incident": {
"name": "Notification delivery",
"impact": "minor",
"status": "monitoring",
"started_at": "2026-06-11T09:50:38.604Z",
"latest_update": "Notifications delivery is now close to fully functional. Root cause identified as a cloud provider issue — monitoring closely.",
"affected_components": ["Notifications"]
},
"last_checked": "2026-06-11T13:20:00.000Z",
"source_url": "https://status.sentry.io"
}
No extra latency when everything is green — the incident fetch only fires for non-operational services.