Skip to main content
Glama

ensp_verify_interfaces

Runs display ip interface brief on a specified eNSP session, parses the output, and returns interface status and IP details to verify connectivity.

Instructions

在指定会话上执行 display ip interface brief,解析后返回。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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

C2.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It mentions that the command is executed on a session and parsed, but it omits side effects, required session state, possible errors, or formatting of output. This is minimal transparency, leaving the agent to infer behavior.

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?

The single sentence is very concise and front-loaded with the core action. However, it is arguably too terse to be helpful, and it wastes no words only because it omits necessary information.

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

Completeness2/5

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

Given there is an output schema, the description need not explain return values, but it still lacks context on session prerequisites, command rationale, and how results should be interpreted. For a verification tool in a suite with many alternatives, this leaves significant gaps.

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

Parameters1/5

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

With only one parameter (session_id_or_name) and 0% schema coverage, the description must explain what a session is and how to supply it. Instead, it says nothing about the parameter, its format, or how sessions are named, providing no semantic value beyond the schema's field name.

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

Purpose3/5

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

The description states the command executed ('display ip interface brief') and the outcome (parsed and returned), so the agent can infer the purpose is interface verification. However, it does not explicitly frame itself as a verification tool or distinguish its function from siblings like ensp_get_device_info or ensp_verify_routes beyond the specific command. Adequate but not strongly differentiated.

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

Usage Guidelines1/5

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

The description offers no guidance on when or why to use this tool versus alternatives such as ensp_send_command, ensp_verify_routes, or ensp_get_device_info. There is no mention of context, prerequisites, or expected outcomes that would help an agent select it.

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