Skip to main content
Glama
andy-qingcai

MHO98 MCP Server

by andy-qingcai

configure_bus_rs232

Set Bus to RS232/UART decoding and configure baud, data/stop bits, parity, polarity, bit order, and TX/RX line sources.

Instructions

Set Bus to RS232/UART decoding and configure it (manual 3.4.11).

tx / rx: line sources CH1..CH4 or D0..D15; rx also OFF (tx and rx cannot both be OFF) polarity: POSitive|NEGative logic sense (default NEGative idle-low) parity: NONE|ODD|EVEN endian: MSB|LSB bit order (default LSB) baud: 1 bps to 20 Mbps in bps (default 9600) dbits: 5|6|7|8|9 data bits (default 8) sbits: 1|1.5|2 stop bits (default 1) display: enable the decoding bus

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rxNo
txNo
busYes
baudNo
dbitsNo
sbitsNo
endianNo
parityNo
displayNo
polarityNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.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 burden. It discloses useful behavioral facts: defaults for polarity/endian/baud/dbits/sbits, and the constraint that tx and rx cannot both be OFF, plus that display enables the decoding bus. However it says nothing about permissions, whether existing config is overwritten, or side effects on other buses, so it's only partially transparent for a mutation tool.

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?

Purpose is front-loaded in the first sentence, followed by a compact parameter reference with no filler. Every line earns its place.

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 needn't be explained, and all ten parameters are documented. The only shortfall is the absence of usage context and side-effect disclosure, minor given the strong parameter coverage.

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 coverage is 0% across 10 parameters, so the description must compensate and does: it enumerates valid values and defaults for tx/rx (CH1..CH4 or D0..D15, rx OFF), polarity, parity, endian, baud range, dbits, sbits, and display. This is exactly the value-add a description should provide over an undocumented schema.

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 specific verb (Set/configure) and resource (Bus <n> to RS232/UART decoding), which cleanly distinguishes it from the many sibling configure_bus_* tools (iic, spi, can, lin, etc.). The manual reference (3.4.11) anchors it further.

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 purpose sentence implies when to use it (configuring RS232/UART decoding on a bus), but there is no explicit when-to-use vs. alternatives guidance and no stated prerequisites. Sibling naming makes the routing obvious, so it's adequate but not explicit.

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