Skip to main content
Glama

Ping Device

ping_device

Check if the Mobilerun Portal is reachable and retrieve its transport type (http or content_provider) to verify connectivity.

Instructions

Is the Mobilerun Portal reachable? Returns its transport (http or content_provider).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

Since no annotations are provided, the description carries the full behavioral burden. It communicates that this is a read-only reachability check and names the return value, but it does not disclose prerequisites, what the optional device parameter changes, or any connectivity/network caveats. Adequate for a simple ping, but not rich.

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

Conciseness5/5

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

The entire description is one front-loaded, efficient sentence with no filler. It leads with the purpose and immediately follows with the key return value, making every word useful.

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

Completeness3/5

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

For a tool with one optional parameter and an output schema, this is close to minimum viable. However, the missing parameter meaning and lack of sibling usage guidance leave a visible gap; the description alone may not fully prepare an agent to select or invoke it correctly in all contexts.

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

Parameters2/5

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

Schema description coverage is 0% and the description does not mention the `device` parameter at all. The agent is left to infer what a string value means and what `null` default does. The parameter name gives a weak semantic clue, but the description fails to connect it to the 'Mobilerun Portal' check.

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

Purpose4/5

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

The description clearly states a specific action ('is the Mobilerun Portal reachable?') and the key return value ('its transport (http or content_provider)'), which makes the tool's job unambiguous. It does not explicitly name a sibling alternative, but the check-and-transport phrasing is distinctive enough to separate it from general device-status or connection tools.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus alternatives such as get_device_status or connect_device. The description implies a reachability check but provides no context, exclusions, or preferred scenarios, leaving the agent to infer applicability from the tool name.

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