← All WebMCP sites

status.networkthinking.com

Developer Toolshttps://status.networkthinking.com/listed as of 2026-08-26
Check if a service is down right now. Network Thinking Solutions monitors 65+ cloud services including Google Workspace, AWS, Microsoft, Slack, Zoom, and more for outages and performance issues.
See Ora's auditWe loaded this site in a real browser and scored its tools. Score: 58/100 (C).

Tools

get_overall_statusanswerimperative
Overall health summary of all cloud services monitored by NTS Status Central: counts by status, which services currently have issues, and how fresh the data is. Use this first to answer 'is anything down right now?'.
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
check_service_statusanswerimperative
Current status of one monitored service (e.g. 'Slack', 'AWS', 'Google Workspace'): status, active issue, last resolved issue, subservice breakdown, and a link to details. Accepts a service name or id; fuzzy matching is applied.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Service name or id, e.g. 'slack', 'Microsoft', 'newbook-api'."
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false
}
list_servicesanswerimperative
List all services monitored by NTS Status Central, optionally filtered by current status (operational, degraded, outage, maintenance) or category (e.g. 'Cloud Services', 'Security', 'Communication').
Input schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "operational",
        "degraded",
        "outage",
        "maintenance",
        "informational",
        "unknown"
      ],
      "description": "Only include services currently in this status."
    },
    "category": {
      "type": "string",
      "description": "Only include services in this category (case-insensitive substring)."
    }
  },
  "additionalProperties": false
}
get_service_uptimeanswerimperative
Weighted uptime percentage for a monitored service over the trailing N days (max 90), plus counts of outage/degraded/maintenance days and the current run of consecutive operational days.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Service name or id, e.g. 'slack' or 'aws'."
    },
    "days": {
      "type": "number",
      "description": "Lookback window in days (1-90). Defaults to 90."
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false
}
list_current_incidentsanswerimperative
All services with an ongoing issue right now (outage, degraded performance, or scheduled maintenance), including when each started and the latest note. Empty list means everything monitored is operational.
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
Listings are sourced from public community registries and shown as reported.