Skip to main content
Glama

ensp_parse_topology

Parse local Huawei eNSP .topo topology files in XML or ZIP format to extract device links and settings for lab setup and configuration.

Instructions

解析本地 .topo 文件(XML 或 ZIP 格式)。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.2

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full disclosure burden yet only states the accepted file formats. It does not say whether the operation is read-only (implied but unstated), how it behaves on malformed/ZIP-corrupt input, or any side effects (e.g., caching or session creation).

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?

A single compact sentence with the key constraints (local, .topo, XML/ZIP) front-loaded and no filler. It is efficient, though the extreme brevity leaves useful context unstated rather than being a model of completeness.

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?

An output schema exists, so return values need not be explained. However, for a parse tool with no annotations and a sibling that handles base64 input, the description omits sibling differentiation and error/side-effect behavior, leaving meaningful gaps.

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?

Schema description coverage is 0%, so the description must compensate. The word '本地' (local) plus '.topo file' implies the single path parameter is a local filesystem path rather than inline data, which is modest but real added meaning over the bare 'Path' schema entry.

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 gives a specific verb (解析/parse) and resource (.topo file), plus the accepted formats (XML or ZIP). It clearly conveys what the tool does, but does not distinguish itself from close siblings such as ensp_parse_topology_b64 or ensp_load_topology, leaving the agent to infer the difference.

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?

There is no explicit when-to-use guidance and no mention of the obvious alternative ensp_parse_topology_b64 for base64 input or ensp_load_topology. The agent must guess which parse/load variant applies to a given situation.

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