Skip to main content
Glama
andy-qingcai

MHO98 MCP Server

by andy-qingcai

configure_record

Record and play back oscilloscope waveforms by setting run/stop, frame counts, intervals, and playback direction or mode.

Instructions

Waveform recorder and playback.

Recording: operate RUN|STOP; frames: number of frames to record (>= 1, frames_max=True records the maximum); interval_s: frame interval 10 ns .. 1 s; prompt: beep when recording completes. Playback: playback_operate RUN|STOP; playback_current / playback_start / playback_end: frame numbers (>= 1); playback_interval_s: 1 ms .. 1 s; playback_mode REPeat|SINGle; playback_direction FORWard|BACKward; playback_step BACK|NEXT steps one frame manually; play_from FFIRst|FEND restarts manual playback from an end. The documented legacy duplicates (:RECord:STARt, :RECord:FRAMes, :RECord:CURRent, :RECord:PLAY) stay reachable via extra, e.g. {"STARt": 1}; unknown keywords raise ValueError.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
extraNo
enableNo
framesNo
promptNo
operateNo
play_fromNo
frames_maxNo
interval_sNo
playback_endNo
playback_modeNo
playback_stepNo
playback_startNo
playback_currentNo
playback_operateNo
playback_directionNo
playback_interval_sNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does so well: it discloses valid ranges (10 ns .. 1 s; 1 ms .. 1 s), the enum options for mode/direction/step, and error behavior (unknown keywords raise ValueError). It stops short of stating whether this is a persistent write, connection requirements, or interaction effects on other subsystems.

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?

Front-loads purpose, then uses clear 'Recording:' / 'Playback:' labels with compact clause-style parameter notes. Given 16 undocumented parameters, every sentence is load-bearing and the structure is easy to scan.

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 no explanation, and the description covers the operations, value domains, and error behavior for a 16-parameter, zero-coverage schema. The undocumented 'enable' parameter and absence of when-to-use context are the only notable omissions.

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

Parameters4/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, and it documents nearly all 16 parameters with value options and ranges (operate RUN|STOP, frames_max semantics, playback_mode REPeat|SINGle, etc.). Only 'enable' is left undocumented, a minor gap against otherwise thorough coverage.

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

Purpose5/5

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

States a concrete verb-plus-resource ('Waveform recorder and playback') and then enumerates the exact recording and playback operations it controls. An agent can distinguish it from sibling configurators like configure_search or configure_la from the description alone.

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

Usage Guidelines3/5

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

The description details the parameters and their operations but never states when to reach for this tool versus alternatives such as get_record_status or other configure_* siblings, nor any prerequisites (e.g. connection state). Usage is implied by the recording/playback split rather than explicitly guided.

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