Skip to main content
Glama

Create ping monitor

create_ping_monitor

Watch a host with ICMP ping: it answers whether the machine is reachable at all, and reports round-trip time and packet loss. Use it for servers, routers and anything with no web service on top. It says nothing about whether a site or service on that host is working - a box can ping perfectly while its web server is down. Some hosting providers block ICMP, in which case the monitor will read as down.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesHostname or IP address, with no scheme and no port, for example example.com or 1.2.3.4.
nameYesLabel shown in the dashboard and in alerts, up to 50 characters. Something recognisable months later beats the bare hostname.
isActiveNoStart monitoring immediately (default true)
frequencyNoCheck frequency in minutes (1-1440, default 5)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesMonitor id, used by every other tool.
urlNo
nameNo
typeNo
isActiveNoFalse while the monitor is paused.
frequencyNoCheck interval in minutes.
statusSummaryNoCurrent state, for example GOOD or ERROR.

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes beyond the annotation bounds by explaining the scope of what a ping reports (network reachability only), clarifying that a host can ping while a web server is down, and revealing that providers blocking ICMP cause monitors to show 'down'. These failure-behaviors are concrete and useful.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences deliver the core action, use cases, and limitations without redundant words. Each sentence adds distinct information, though the sentence listing use cases and the sentence on service status could be more tightly merged.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description fully accounts around when to choose ping vs. other personal agents and identifies real-world failure modes. Since an output schema is present, the absence of response field details is acceptable; the description lacks only an explicit pointer to the service-monitor sub-tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already covers all four parameters with rich, specific descriptions (e.g., URL no scheme/port, frequency range, name max length, isActive default). The tool description does not add new parameter-level semantics beyond the schema, so the baseline coverage score applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific action and resource: 'Watch a host with ICMP ping' plus the exact metrics reported (round-trip time, packet loss). It clearly differentiates from service-level by stating it only checks machine reachability, distinguishing it from HTTP, port, and API monitor siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says when to use the tool: 'servers, routers and anything with no web service on top,' and warns that it reveals nothing about whether a hosted service is working. The ICMP-blocking provider caveat also sets correct expectations for when the monitor may misreport.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose. The six monitor creation tools are explicitly differentiated in their descriptions (e.g., HTTP vs API vs SSL vs domain), and lifecycle tools like delete, pause, resume, and list are unambiguous. Overlap is minimal and explicitly addressed.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (e.g., create_http_monitor, get_stats_hourly, pause_monitor). No mixed conventions or vague verbs; the pattern is uniform and predictable.

Tool Count4/5

15 tools is on the higher end of the ideal range, but each tool earns its place. The count reflects a comprehensive monitoring surface without unnecessary redundancy. Slightly over the typical sweet spot, but justified by the domain.

Completeness4/5

The tool surface covers creation, deletion, pause/resume, listing, retrieval, incident history, and two levels of statistics, plus notifications. A notable gap is the absence of an update/edit tool for existing monitors, which agents may need to adjust configurations. Otherwise, the lifecycle is well covered.

Resources