Skip to main content
Glama
andy-qingcai

MHO98 MCP Server

by andy-qingcai

set_lan

Configure LAN interface settings for a Rigol MHO98 oscilloscope, including IP, gateway, DNS, DHCP, auto IP, manual mode, mDNS, and hostname, then apply changes.

Instructions

Configure the LAN interface (section 3.14).

ip/gateway/dns: dotted-quad, first octet 0..223 (not 127), others 0..255; mask: dotted-quad with every octet 0..255. Static addresses only apply when DHCP and Auto IP are off and manual (static) mode is on. The three IP modes cannot all be off at once (firmware rule). dhcp/auto_ip/manual/mdns: booleans; hostname/description: printable ASCII. apply: send :LAN:APPLy afterwards to activate all pending LAN settings.

extra: only documented :LAN keywords are accepted, e.g. {"HOST:NAME": "scope1"} → :LAN:HOST:NAME scope1.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ipNo
dnsNo
dhcpNo
maskNo
mdnsNo
applyNo
extraNo
manualNo
auto_ipNo
gatewayNo
hostnameNo
descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/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 and does disclose real constraints: the firmware rule that the three IP modes cannot all be off, the condition under which static addresses take effect, and that :LAN:APPLy is needed to activate pending settings. It does not say whether changes are persistent, require a reboot, or need elevated permissions, leaving meaningful gaps.

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 purpose is front-loaded, and the dense multi-line format is justified by 12 undocumented parameters, with each line mapping to a parameter group. The terse pseudo-BNF notation is efficient though slightly cryptic for an agent parsing it.

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?

An output schema exists, so return values need not be described. For a mutation tool with no annotations and 12 parameters, the description covers typing, ranges, mode interdependencies, and the activation step adequately; only persistence/permission behavior is missing.

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

Parameters5/5

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

Schema description coverage is 0% across 12 parameters, so the description must compensate entirely, and it does: it specifies dotted-quad ranges for ip/gateway/dns (first octet 0..223, not 127), mask octet ranges, boolean typing for dhcp/auto_ip/manual/mdns, ASCII constraints for hostname/description, the apply flag's effect, and an example of the extra keyword syntax.

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 opens with a specific verb+resource ('Configure the LAN interface') and even cites the manual section, so the action is unambiguous. It does not explicitly name its sibling get_lan_config as the read counterpart, so it stops short of full sibling differentiation.

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 statement of when to use this tool versus get_lan_config or any other sibling, nor any prerequisites or exclusions. The 'apply' note is procedural guidance on activation, not guidance on tool selection.

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

Deploy Server

Other Tools