5 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
get_overall_status, check_service_status, list_services, get_service_uptime, list_current_incidents<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_overall_status" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_overall_status",
"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
},
"annotations": {
"readOnlyHint": true
}
}list_services: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "list_services",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));get_overall_status, check_service_status, list_services, get_service_uptime, list_current_incidents<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_overall_status" tooldescription="...">
<!-- the same action, as UI -->
</form>