← WebMCP Directory

Tool tree

status.networkthinking.com

liveDeveloper Tools
https://status.networkthinking.com/
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.
Explore capabilities
get_overall_statusAnswer

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?'.

View tool JSON
{
  "name": "get_overall_status",
  "kind": "answer",
  "impl": "imperative",
  "description": "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?'.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/"
}
check_service_statusAnswer

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.

View tool JSON
{
  "name": "check_service_status",
  "kind": "answer",
  "impl": "imperative",
  "description": "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.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Service name or id, e.g. 'slack', 'Microsoft', 'newbook-api'."
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  },
  "page": "/"
}
list_servicesAnswer

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').

View tool JSON
{
  "name": "list_services",
  "kind": "answer",
  "impl": "imperative",
  "description": "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').",
  "inputSchema": {
    "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
  },
  "page": "/"
}
get_service_uptimeAnswer

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.

View tool JSON
{
  "name": "get_service_uptime",
  "kind": "answer",
  "impl": "imperative",
  "description": "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.",
  "inputSchema": {
    "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
  },
  "page": "/"
}
list_current_incidentsAnswer

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.

View tool JSON
{
  "name": "list_current_incidents",
  "kind": "answer",
  "impl": "imperative",
  "description": "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.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/"
}