hyperping
Server Details
Uptime, API and server monitoring with outages, reporting, on-call and status pages.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- hyperping/mcp-server
- GitHub Stars
- 1
- Server Listing
- Hyperping
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.6/5 across 26 of 26 tools scored. Lowest: 2.9/5.
Each tool targets a specific resource or action (monitor, outage, escalation policy, etc.) with clear naming. No two tools could be easily confused; even similar ones like get_monitor_outages and get_monitor_anomalies serve distinct purposes.
All tools follow a consistent verb_noun pattern (create_, get_, list_, pause_, resume_, search_, update_) and use snake_case uniformly. This makes the tool set predictable and easy to navigate.
With 26 tools, the set is slightly above the typical well-scoped range of 3-15, but each tool serves a distinct monitoring function (monitors, outages, escalations, integrations, schedules, alerts, team members). The count is reasonable for the domain.
The tool surface is heavily read-oriented, lacking create/update/delete for most resource types (escalation policies, integrations, on-call schedules, outages). Even monitors lack a delete tool. This leaves significant gaps for administrative workflows.
Available Tools
26 toolscreate_monitorCreate monitorBInspect
Create a new monitor. Requires name+url; add "port" for port checks, "dns_*" for DNS checks.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Target URL (http) or hostname (icmp/port/dns). | |
| name | Yes | Human-readable monitor name. | |
| port | No | TCP port — required when protocol is "port". | |
| paused | No | Start the monitor in a paused state. | |
| regions | No | Probe region codes, e.g. ["us-east","eu-west"]. Use ["*"] for all. | |
| timeout | No | Request timeout in seconds (default 30). | |
| group_id | No | Group to place the monitor in. | |
| protocol | No | Check protocol. Defaults to "http". | |
| alerts_wait | No | Minutes to wait before alerting. -1 disables, 0 is immediate. | |
| http_method | No | HTTP verb. Defaults to GET. | |
| request_body | No | Body for http requests. | |
| dns_nameserver | No | Custom nameserver for DNS checks. | |
| check_frequency | No | Check interval in seconds. Sub-30s requires a business plan. | |
| dns_record_type | No | DNS record type (protocol="dns"). | |
| request_headers | No | Custom request headers. | |
| follow_redirects | No | Follow 3xx redirects on http monitors. | |
| required_keyword | No | Body must contain this keyword, else flagged down. | |
| escalation_policy | No | UUID of an escalation policy to link. | |
| dns_expected_answer | No | Expected DNS answer to assert against. | |
| expected_status_code | No | Expected response status: number (200), "2xx", or "1xx-3xx". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It states creation (mutation) but does not mention side effects, authorization needs, rate limits, or expected response format. This is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very short (two sentences) and front-loads the core requirement. It is efficient but could include more context without being overly verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 20 parameters, no output schema, and no annotations, the description is highly incomplete. It only addresses three parameters, leaving agents without guidance on many fields and expected results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, providing baselines for all parameters. The description adds minimal value by grouping 'port' and 'dns_*' but does not explain other parameters beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Create a new monitor' with a specific verb and resource, distinguishing it from sibling tools like update_monitor. However, it does not explicitly differentiate from other tools beyond the verb.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives minimal guidance: 'Requires name+url; add "port" for port checks, "dns_*" for DNS checks.' It implies context but lacks explicit when-to-use or when-not-to-use, and does not mention prerequisites like permissions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_escalation_policyGet escalation policyAInspect
One policy by UUID. Reveals step sequence, linked schedules, and contact channels.
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Escalation policy UUID (format "esc_..."). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavior. It mentions what is returned but does not state it is a read-only operation, idempotent, or any side effects. Minimal transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that front-loads the purpose and output details. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple input schema (one parameter) and no output schema, the description adequately explains what the tool returns. It could mention error handling or uniqueness, but overall sufficient for a get operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with a description for the uuid parameter. The tool description adds no new semantics beyond the schema, so baseline score 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'One policy by UUID,' indicating a specific retrieval operation. It details what is revealed (step sequence, linked schedules, contact channels), distinguishing it from list_escalation_policies.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when a specific UUID is known, but does not explicitly state when to use versus alternatives like list_escalation_policies. No when-not or context provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_integrationGet integrationAInspect
One integration by UUID, with its channel-specific config (channel name, webhook URL, routing, etc.).
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Integration UUID (format "int_..."). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description must disclose behavior. It mentions the returned config fields, but does not explicitly state that this is a read-only operation or that it requires specific permissions. Adequate for a simple get, but could be more transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is clear and to the point, with no unnecessary words. Perfectly concise for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter tool with no output schema, the description covers what it does and what it returns. However, it does not mention error cases (e.g., invalid UUID) or that the result is a single object. Still, it is mostly complete given the simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the single parameter 'uuid' with a format hint. The description adds that the UUID retrieves the integration with config, but this is implicit from schema. Baseline score applies since schema already explains the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves one integration by UUID, including channel-specific config. It differentiates from list_integrations by specifying 'one' and listing the config fields.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when needing details of a specific integration, but does not explicitly state when not to use or mention alternatives like list_integrations for multiple results. Minimal guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_monitorGet monitorAInspect
Fetch a single monitor by its UUID.
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Monitor UUID (format "mon_...") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden. The word 'Fetch' implies a read operation, which is appropriate, but there is no further detail on behavior (e.g., whether it returns the full object, error cases, or authorization needs). This is minimally sufficient for a simple get tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence, front-loading the core action and resource. Every word is necessary, and there is no extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple get tool with one parameter and no output schema, the description is adequate but minimal. It does not explain the return value or any side effects, though missing output schema reduces the burden somewhat. It covers the essential purpose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema coverage is 100% with a description for the 'uuid' parameter. The tool description adds no additional information beyond what the schema provides, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Fetch a single monitor by its UUID' uses a specific verb ('Fetch') and resource ('monitor'), clearly distinguishing from sibling tools like list_monitors (lists all) and search_monitors_by_name (searches by name).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No usage guidelines are provided. The description does not specify when to use this tool over alternatives, nor does it mention exclusions or prerequisites. It implicitly suggests using when a UUID is available, but lacks explicit context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_monitor_anomaliesGet monitor anomaliesAInspect
Anomaly-detection output for a single monitor (flapping, latency spikes, etc.).
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Monitor UUID (format "mon_..."). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description does not disclose whether the operation is read-only, any authorization requirements, rate limits, or response format, leaving the agent with minimal behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that front-loads the purpose with specific examples, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and no output schema, the description provides basic context with examples but lacks details on the output structure or additional behavioral information, leaving some gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with the 'uuid' parameter already described. The description adds no new parameter information beyond the schema, so baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns anomaly-detection output for a single monitor, with examples like flapping and latency spikes, distinguishing it from sibling tools that return other monitor data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for getting anomaly data for a specific monitor, but does not explicitly state when to use it over alternatives like 'get_monitor' or 'get_monitor_uptime', nor does it provide exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_monitor_http_logsGet monitor HTTP logsBInspect
Recent HTTP probe logs for a monitor, paginated. Useful to diagnose recent check failures.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Zero-indexed page. Default 0. | |
| uuid | Yes | Monitor UUID (format "mon_..."). | |
| level | No | Filter by log level. | |
| limit | No | Rows per page. Default 50, max 200. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'recent' but does not specify time window, auth requirements, rate limits, or behavior when no logs exist. This lack of detail is a significant gap for a tool with no annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with no superfluous words. It efficiently communicates purpose and context without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having 4 parameters and no output schema or annotations, the description does not explain return format, pagination details (e.g., total count), time range, or error handling. This leaves significant gaps for an agent to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (all 4 parameters have descriptions in the schema). The description adds 'paginated' which is already implied by page/limit parameters. It does not provide additional semantics beyond the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns 'Recent HTTP probe logs for a monitor, paginated' and specifies it's useful for diagnosing check failures. It uniquely identifies the resource and purpose, distinguishing it from sibling tools like get_monitor or get_monitor_uptime.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage via 'Useful to diagnose recent check failures' but does not explicitly state when to use this tool versus alternatives like get_monitor_outages or get_monitor_response_time. No guidance on when not to use or prerequisites is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_monitor_mttaGet MTTA per monitorBInspect
Mean time to acknowledge (MTTA) per monitor over a date window, in seconds.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ISO end date. Default: now. | |
| from | No | ISO start date. Default: 30 days ago. | |
| monitor_uuids | No | Restrict to these monitor UUIDs. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description does not disclose behavioral traits such as read-only nature, aggregation details, rate limits, or side effects. The burden falls on the description, which is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no waste. It is front-loaded with the key concept, but could be slightly more structured to aid scanning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 3 optional parameters and no output schema, the description omits important details like how from/to interact, whether MTTA is per monitor or aggregated, and behavior when no data exists. It is not sufficiently complete for reliable autonomous invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds minimal extra meaning beyond the schema, only implying a date window. No additional param semantics are provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool computes mean time to acknowledge (MTTA) per monitor over a date window in seconds, distinguishing it from related siblings like get_monitor_mttr and get_monitor_uptime.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives such as get_monitor_mttr or get_monitor_outages. The description does not provide context for appropriate use or exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_monitor_mttrGet MTTR per monitorAInspect
Mean time to resolve (MTTR) per monitor over a date window, in seconds.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ISO end date. Default: now. | |
| from | No | ISO start date. Default: 30 days ago. | |
| monitor_uuids | No | Restrict to these monitor UUIDs. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully convey behavioral traits. It states the output unit (seconds) and the date window scope, but omits details on data limitations, authentication needs, or what happens with missing data. Acceptable for a simple read, but could be more transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single efficient sentence that front-loads the metric name and includes all key elements (MTTR, per monitor, date window, seconds). No extraneous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity and good schema coverage, the description is mostly complete. However, it lacks explicit mention of the output format (e.g., single value vs. per-monitor mapping) and does not clarify date format beyond what's in the schema, but those are minor gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with parameter descriptions: ISO date defaults and monitor filter. The description adds no additional meaning beyond what the schema already provides, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns 'Mean time to resolve (MTTR) per monitor over a date window, in seconds.' This specificity distinguishes it from siblings like get_monitor_mtta (MTTA) and get_monitor_uptime.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for MTTR queries but provides no explicit guidance on when to choose this over alternatives like get_monitor_mtta or get_monitor_outages. No exclusions or selection criteria are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_monitor_outagesGet outages for a monitorAInspect
Paginated list of outages scoped to one monitor. Convenience wrapper around list_outages.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Zero-indexed page number, 20 per page. | |
| status | No | Filter by status. Defaults to "all". | |
| monitor_uuid | Yes | Monitor UUID (format "mon_...") to filter by. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description indicates pagination and scoping, but with no annotations, it fails to disclose whether the tool is read-only, what happens with invalid monitor UUIDs, or any side effects. Basic behavior is covered, but deeper context is missing.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the essential purpose, and contains no unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema, the description lacks details on the structure of the returned data (e.g., fields, pagination metadata). It is adequate but minimal, leaving the agent to infer much from the tool name and parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers all parameters with descriptions (100% coverage). The description does not add new information about parameters beyond what the schema provides, so it meets the baseline but adds no extra value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns a paginated list of outages for a specific monitor, and distinguishes itself from the broader 'list_outages' tool by being scoped to one monitor.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It mentions being a convenience wrapper around list_outages, implying that for single-monitor queries this tool is appropriate, but it does not explicitly state when to avoid using it or provide direct alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_monitor_response_timeGet response timeBInspect
Response time latency trend over a date window.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ISO end date. Default: now. | |
| from | No | ISO start date. Default: 30 days ago. | |
| resolution | No | Time grouping. Default "day". | |
| monitor_uuids | No | Restrict to these monitor UUIDs. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden for behavioral disclosure. It only says 'trend over a date window,' which implies a read operation but fails to state read-only nature, side effects, or required permissions. The minimal description does not adequately inform the agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of six words, which is very concise. However, it may be overly terse and could benefit from slightly more context without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite full parameter documentation, there is no output schema and the description does not explain the return format (e.g., a time series array). The agent cannot infer what the tool returns, leaving a significant gap in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Since schema description coverage is 100%, the baseline is 3. The description adds no additional meaning beyond the schema parameter descriptions (e.g., 'to,' 'from,' 'resolution,' 'monitor_uuids' are already well-documented).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves a 'response time latency trend over a date window,' which is a specific verb+resource combination. It distinguishes from sibling tools like get_monitor_uptime or get_monitor_mtta by focusing on response time trends, not other metrics.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not specify exclusions, prerequisites, or suggest alternative tools for different use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_monitor_uptimeGet uptime (SLA) statsCInspect
Uptime percentage over a date window, aggregated and optionally per day/hour/week/month.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ISO end date. Default: now. | |
| from | No | ISO start date. Default: 30 days ago. | |
| resolution | No | Time grouping. Default "day". | |
| monitor_uuids | No | Restrict to these monitor UUIDs. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility. It does not disclose behavioral traits such as whether it is a read-only operation, any rate limits, pagination behavior, or what happens when no data exists for the window. The description is too sparse to guide safe invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 12 words, tightly focused on the core purpose. It is front-loaded and efficient, though slightly more detail (e.g., 'percentage' or 'SLA') could improve without harming conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no required parameters, no output schema, moderate parameter count), the description is minimally adequate. It covers the what but not the how or edge cases. For a straightforward query tool, it may suffice, but leaves ambiguity about exact return format.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all 4 parameters with descriptions, so baseline is 3. The description adds the context 'aggregated and optionally per day/hour/week/month' which relates to the resolution parameter, but does not provide additional semantics beyond the schema. No parameters are clarified further.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns uptime percentage over a date window with optional aggregation per day/hour/week/month. It effectively conveys the core function and distinguishes from sibling tools like get_monitor_response_time, though it doesn't explicitly call out differences.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives (e.g., get_monitor_outages, get_monitor_anomalies). The description lacks context on prerequisites, ideal use cases, or exclusions, leaving the agent to infer from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_on_call_scheduleGet on-call scheduleAInspect
One schedule by UUID with full rotation detail and the linked escalation policies.
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Schedule UUID (format "sch_..."). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description only mentions return content but lacks disclosure on error handling, idempotency, or side effects. For a simple read operation, this is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence of 12 words, front-loads the core purpose with no extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple get-by-ID tool with one parameter, the description covers the return content (rotation detail, escalation policies) but lacks details on response format or potential errors.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a clear description for uuid. The tool description adds no additional meaning beyond restating that it retrieves by UUID.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it retrieves one schedule by UUID with full rotation detail and linked escalation policies, distinguishing from list_on_call_schedules and other siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage when you have a UUID and need detailed data, but no explicit when-not-to-use or alternatives like list_on_call_schedules are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_outageGet outageAInspect
Fetch a single outage by UUID, including acknowledgements, description, and root cause.
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Outage UUID. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It does not disclose idempotence, permissions, error cases, or response format. While the operation is simple, the description offers minimal behavioral context beyond the basic fetch action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence front-loaded with the core purpose. No unnecessary words. Perfectly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (1 required param, no output schema), the description covers the essential purpose and included fields. However, it lacks information on return value structure, error states, or scope (e.g., current vs historical). Adequate but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with the uuid parameter having a description. The tool description adds no new meaning beyond restating 'by UUID'. Baseline score of 3 is appropriate as schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action 'Fetch' and the resource 'a single outage by UUID', and specifies included fields (acknowledgements, description, root cause). It distinguishes from siblings like list_outages which returns multiple outages.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied (fetch by UUID) but no explicit when-to-use, when-not-to, or alternatives. For example, it does not mention list_outages for listing all outages. The description is adequate but lacks guidance on context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_outage_timelineGet outage timelineAInspect
Full activity timeline for an outage: detection, cross-region verification, alert dispatches, acknowledgement, resolution.
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Outage UUID (format "outage_..." or "INC-123"). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It enumerates included events (detection, verification, alerts, acknowledgement, resolution), which gives useful behavioral context. However, it omits details like default time range, ordering, pagination, or whether it returns the entire history or recent events.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence that is perfectly concise, front-loads the main purpose, and lists key activity types without extraneous words. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with one parameter and no output schema, the description adequately covers the return contents by listing event types. Minor gaps include lack of time range behavior or ordering, but given the low complexity, it is nearly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema provides 100% coverage for the single 'uuid' parameter with description. The tool description does not add additional meaning beyond what the schema already provides, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it provides a 'full activity timeline for an outage' and lists specific event types (detection, cross-region verification, etc.), distinguishing it from the sibling 'get_outage' tool which likely returns outage details rather than timeline events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives like 'get_outage' or 'get_monitor_outages'. The description implies it is for timeline-specific queries, but lacks direct comparison or exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_status_summaryStatus summaryAInspect
Up/down/paused counts plus a list of currently down monitors with the timestamp they went down.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the output (counts and down list with timestamps). It does not explicitly state that it is read-only or non-destructive, but as a 'get' tool with no parameters, it is implicitly safe. With no annotations, the description provides adequate transparency for a simple read tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that conveys the essential information without extraneous words. Every word contributes to understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters and no output schema, the description covers the core functionality. It could mention behavior when no monitors exist or if counts are real-time, but for a simple summary tool, it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with zero parameters, so the description is not required to document parameters. It adds value by describing the output structure, which is beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides up/down/paused counts and a list of down monitors with timestamps. This is a specific verb (get) and resource (status summary), and it distinguishes from sibling tools that focus on individual monitors or lists.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives like list_monitors or search_monitors_by_name. Usage is implied by the description, but there is no mention of exclusions or preferred scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_escalation_policiesList escalation policiesAInspect
All escalation policies in the project. Use to find which monitors route alerts where.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It states the tool returns all escalation policies, implying a read-only list operation. However, it does not mention whether pagination, filtering, or rate limits apply, nor does it describe the return format. The absence of output schema amplifies this gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with zero wasted words. It front-loads the core purpose and immediately adds a usage hint. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with no parameters, but the lack of output schema and behavioral details (e.g., return structure) limits completeness. The description covers purpose and a use case, but an agent would benefit from knowing what fields each policy includes.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, so schema description coverage is 100%. The description adds no parameter-specific information, but none is needed. Baseline score of 4 is appropriate for a parameterless tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('list') and resource ('escalation policies'), clearly distinguishing it from the sibling tool 'get_escalation_policy' which retrieves a single policy. The phrase 'All escalation policies in the project' makes the scope explicit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear use case: 'Use to find which monitors route alerts where.' It implies when to use this tool (to list all policies for understanding alert routing). However, it does not explicitly mention when not to use it or suggest alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_integrationsList integrationsAInspect
All notification integrations in the project (Slack, Telegram, Discord, PagerDuty, OpsGenie, Teams, webhook, etc.).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only states that the tool lists integrations and mentions types, but it does not disclose any behavioral traits such as pagination, rate limits, or whether the list is complete.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one concise sentence, front-loading the purpose and examples without any unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list-all tool with no parameters, the description is adequate but could be more complete by contrasting with siblings or mentioning return format. It lacks guidance on when to use this versus other list/get tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters, so schema coverage is 100%. The description adds no parameter information, which is acceptable as there are none. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool lists all notification integrations in the project and provides examples (Slack, Telegram, etc.), which distinguishes it from the sibling 'get_integration' that retrieves a single integration.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies that this tool is for listing all integrations, but it does not explicitly state when to use it versus alternatives like 'get_integration' or other list tools. No usage exclusions or context are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_monitorsList monitorsBInspect
Paginated monitors in the project. Optional status filter (up/down/paused/ssl_expiring).
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Zero-indexed page. Default 0. | |
| limit | No | Rows per page. Default 50, max 200. | |
| status | No | Filter by state. "ssl_expiring" = SSL expires within 30 days. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It mentions pagination and the status filter, but omits ordering, scope (project-wide), or behavior when no monitors exist. This is adequate but not detailed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that efficiently conveys the core functionality without unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema and annotations, the description should provide more behavioral context (e.g., return format, ordering, scope). The current description is too minimal for a tool with multiple list siblings.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description repeats the status filter already documented in the schema with 100% coverage. It adds no extra meaning for page or limit parameters beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists monitors with pagination and an optional status filter. The verb 'list' combined with 'paginated monitors' makes the purpose obvious. However, it does not explicitly differentiate from sibling list tools like list_escalation_policies or search_monitors_by_name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives such as search_monitors_by_name or get_monitor. It does not specify prerequisites or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_on_call_schedulesList on-call schedulesAInspect
All on-call schedules in the project. Each entry typically includes rotation config and current on-call.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It mentions typical response fields (rotation config, current on-call) but does not discuss pagination, ordering, or whether the list is exhaustive or scoped to a project. Adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, no wasted words. Efficiently communicates the tool's purpose and typical output.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters and no output schema, the description sufficiently covers the tool's behavior and output. Could mention if the list is sorted or if it includes all schedules, but overall complete for a simple list tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has no parameters (0 params, 100% coverage), so description does not need to add parameter info. Baseline 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it lists all on-call schedules in the project and mentions typical entry contents. Distinguishes from sibling 'get_on_call_schedule' (singular) as a list operation, but could be more specific about scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this versus other tools like 'get_on_call_schedule' or when to filter. The description only states what it does, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_outagesList outagesAInspect
Paginated list of outages in the project. Filter by status, type, or search term.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Zero-indexed page number, 20 outages per page. | |
| type | No | Filter by type. Defaults to "all". | |
| search | No | Substring matched against monitor name/URL/domain or "INC-123". | |
| status | No | Filter by status. Defaults to "all". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description mentions pagination but does not detail page size, default values, or ordering. With no annotations provided, the description partially covers behavioral traits but leaves gaps such as rate limits or result structure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently communicates the core functionality and filtering options. No extraneous information or redundancies.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description conveys the main purpose but lacks details about default pagination behavior (e.g., 20 per page from schema), optional nature of all parameters, and the return structure (list of outage objects). Given no output schema, it is adequate but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description summarizes that filters exist (status, type, search) but adds no new meaning beyond the input schema, which already describes each parameter thoroughly. With 100% schema coverage, the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('list') and the resource ('outages') with context ('in the project'). It also mentions filtering capabilities. This distinguishes it from siblings like get_outage (single outage) and get_monitor_outages (monitor-specific).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for listing outages with filters but does not provide explicit guidance on when to use this tool versus alternatives like get_monitor_outages for monitor-specific outages or get_outage for a single outage. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_recent_alertsList recent alertsBInspect
Alert notifications (up/down transitions) over a date range. Defaults to last 30 days.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ISO end date. Default: now. | |
| from | No | ISO start date. Default: 30 days ago. | |
| resolution | No | Time grouping. Default "day". | |
| monitor_uuids | No | Restrict to these monitor UUIDs. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the full burden of behavioral disclosure. It only states the basic function and defaults, omitting critical traits such as whether the result is paginated, authentication requirements, rate limits, or any side effects. This leaves the agent underinformed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that efficiently conveys the tool's core purpose and default behavior. Every word earns its place with no redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 4 optional parameters and no output schema or annotations, the description is insufficiently complete. It lacks any mention of return format, pagination behavior, or caveats, leaving the agent without key execution context for a list operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds no additional meaning beyond what the schema provides; it only rephrases the date range default. The schema already documents each parameter adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists alert notifications (up/down transitions) over a date range, with a specific default of last 30 days. It uniquely identifies the resource and action among sibling tools, which lack an alert-listing counterpart.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving alerts over a date range with a default period, but provides no explicit guidance on when to use this tool versus alternatives or when not to use it. No exclusions or alternative tools are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_team_membersList team membersAInspect
Users on the project, with names and emails. Use to resolve user IDs from schedules/policies.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It describes the output (users with names and emails) but does not disclose other behavioral traits such as authentication requirements, rate limits, or whether it returns all members or only active ones. This is minimal but adequate for a simple list operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with purpose, and contains no unnecessary words. It is efficiently structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and no output schema, the description provides sufficient information: what the tool returns and a key use case. It could mention output format or pagination, but for a zero-param list tool, it is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so baseline 4 applies as per rules. The description adds no parameter information, which is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool lists team members (users on the project) with names and emails, and identifies a specific use case: resolving user IDs from schedules/policies. This distinguishes it from sibling tools which focus on monitors, outages, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: 'Use to resolve user IDs from schedules/policies.' It does not mention when not to use it or alternatives, but the use case is clear given the context of sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pause_monitorPause monitorAInspect
Pause a monitor — no checks run and no alerts fire. Same as update_monitor with paused=true.
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | UUID of the monitor to pause. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses the key behavioral effect (no checks and no alerts) and equivalent behavior via update_monitor. However, it does not address reversibility, impact on existing alerts, or authorization requirements. The transparency is adequate but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero fluff. The core action and effect are front-loaded. Every word adds value. The alternative reference is succinctly placed. Highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no output schema, the description covers the main effect and relationship to a sibling. It could mention that the pause is reversible (resume_monitor exists) but is otherwise complete. Given the low complexity, this is strong.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with one parameter (uuid) having a clear description. The tool description adds no additional parameter context beyond the schema. Baseline 3 is appropriate as the schema fully documents the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb (Pause), the resource (monitor), and the effect (no checks run, no alerts fire). It explicitly distinguishes itself from the sibling tool update_monitor by noting equivalence when paused=true, which removes ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for simple pause operations, while update_monitor is for broader updates. However, it does not explicitly state when not to use this tool or provide exclusions. The mention of 'Same as update_monitor with paused=true' gives clear context but lacks explicit guidance on alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resume_monitorResume monitorAInspect
Resume a paused monitor. Same as update_monitor with paused=false.
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | UUID of the monitor to resume. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided. The description discloses that the tool changes state from paused to active and is equivalent to update_monitor with paused=false. It does not mention side effects, authentication, or rate limits, but for a simple state change this is acceptable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, concise and front-loaded. Every sentence adds value: first states the action, second explains equivalence to another tool. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (1 param, no output schema), the description covers the essential purpose and behavior. It could mention what happens if the monitor is not paused, but overall it is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the schema already explains the uuid parameter. The description adds no further meaning beyond the parameter, so baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool resumes a paused monitor, using specific verb 'Resume' and resource 'paused monitor'. It distinguishes from siblings like 'pause_monitor' and references 'update_monitor' as an alternative.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when a monitor is paused and needs to be resumed, citing equivalence to update_monitor. However, it lacks explicit guidance on when not to use it, e.g., if the monitor is not paused or if other actions are preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_monitors_by_nameSearch monitors by nameBInspect
Case-insensitive substring search across monitor names and URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Case-insensitive substring matched against monitor names or URLs. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description only states case-insensitive substring matching but omits return format, pagination, or any side effects. Behavioral traits beyond the basic operation are absent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, 8 words, completely front-loaded with no wasted words. Ideal conciseness for the information conveyed.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite low complexity (1 param, no output schema), the description lacks details on output format, sorting, limits, or default behavior, which are important for a search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the parameter description is already clear. The tool description adds marginal value by confirming the search scope (names and URLs) beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it performs a case-insensitive substring search across monitor names and URLs, distinguishing it from sibling tools like get_monitor (specific monitor) and list_monitors (all monitors).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives (e.g., list_monitors, get_monitor). Missing explicit context for when substring search is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_monitorUpdate monitorAInspect
Patch a monitor. Pass only fields you want to change; others are preserved.
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Target URL (http) or hostname (icmp/port/dns). | |
| name | No | Human-readable monitor name. | |
| port | No | TCP port — required when protocol is "port". | |
| uuid | Yes | UUID of the monitor to update. | |
| paused | No | Start the monitor in a paused state. | |
| regions | No | Probe region codes, e.g. ["us-east","eu-west"]. Use ["*"] for all. | |
| timeout | No | Request timeout in seconds (default 30). | |
| group_id | No | Group to place the monitor in. | |
| protocol | No | Check protocol. Defaults to "http". | |
| alerts_wait | No | Minutes to wait before alerting. -1 disables, 0 is immediate. | |
| http_method | No | HTTP verb. Defaults to GET. | |
| request_body | No | Body for http requests. | |
| dns_nameserver | No | Custom nameserver for DNS checks. | |
| check_frequency | No | Check interval in seconds. Sub-30s requires a business plan. | |
| dns_record_type | No | DNS record type (protocol="dns"). | |
| request_headers | No | Custom request headers. | |
| follow_redirects | No | Follow 3xx redirects on http monitors. | |
| required_keyword | No | Body must contain this keyword, else flagged down. | |
| escalation_policy | No | UUID of an escalation policy to link. | |
| dns_expected_answer | No | Expected DNS answer to assert against. | |
| expected_status_code | No | Expected response status: number (200), "2xx", or "1xx-3xx". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears full burden for behavioral disclosure. It only mentions the patch behavior, omitting details like idempotency, side effects, rate limits, or permissions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no wasted words, front-loaded with the action. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 21 parameters and no output schema, the description is minimal. It conveys the update nature but lacks information on required fields (uuid), error handling, or response format, leaving gaps for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds general patch semantics but does not enhance individual parameter meanings beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Patch a monitor', a specific verb+resource. This distinguishes it from siblings like create_monitor or pause_monitor.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear guidance on usage: 'Pass only fields you want to change; others are preserved.' This indicates a partial update pattern, but does not explicitly state when not to use it or compare to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
Flicense-qualityCmaintenanceLet agents read and manage your org’s independent monitors, incidents, status pages, and alerts (honest measured state, no false greens).- AlicenseAqualityBmaintenanceSix-layer website monitoring (uptime, performance, SSL, DNS, visual regression, content change) from Claude, Cline, and Cursor. Free tools (DNS lookup, SSL check, speed test, website checker) work without an account; monitor, incident, alert, and status-page tools use a personal API key.16101MIT

DevHelm MCP Serverofficial
AlicenseBqualityBmaintenanceMCP server for uptime monitoring, incidents, alerting, and dependency status.1001MIT- AlicenseAqualityBmaintenanceLive operational status for 2,400+ major software services — AWS, GitHub, Stripe, OpenAI, Cloudflare, and more — pulled from each provider's official status page and returned as a normalised up / degraded / down result for any service you ask about.51MIT
Your Connectors
Sign in to create a connector for this server.