Skip to main content
Glama

ensp_ping

Runs ping -c count target on a specified eNSP session and parses the packet loss rate to verify connectivity and diagnose network faults.

Instructions

在指定会话上执行 ping -c {count} {target},解析丢包率。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
targetYes
timeoutNo
session_id_or_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.2

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It usefully discloses the exact command executed and that packet loss rate is parsed, but omits session-state requirements, timeout behavior, error handling, and any side effects of running ping.

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?

A single, front-loaded sentence with no filler. It states the action, the command template, and the parsed output in one efficient line.

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?

Output schema exists, so return values need not be explained, and the core action is clear. Still, with no annotations and 0% schema description coverage, the definition leaves usage conditions, timeout semantics, and session requirements unstated for an agent that must call it correctly.

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%, so the description must compensate for four parameters. It references count and target via the command template and implies session_id_or_name with '指定会话', but completely omits timeout and provides no format, default, or session-identifier details.

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 states a specific verb (执行 ping), resource (指定会话), target, and a precise command template, making the purpose clear. However, it does not explicitly differentiate the tool from siblings like ensp_send_command or ensp_send_commands, which could also run commands on a session.

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?

It gives the context that the tool runs on a specified session, but provides no when-to-use guidance, no alternatives, and no prerequisites such as requiring an active session. The agent must infer usage entirely from the name and description.

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