Skip to main content
Glama
andy-qingcai

MHO98 MCP Server

by andy-qingcai

configure_smb

Set up SMB file saving by defining the Windows share path, username, password, and autoconnect option to save oscilloscope data to a network share at boot.

Instructions

Configure SMB (Windows share) file saving.

server_path: "\192.168.1.5\Share" (IP address + English-letters share name); username/password: printable ASCII, no Chinese characters; autoconnect: reconnect the share at boot.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
passwordNo
usernameNo
autoconnectNo
server_pathNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/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 behavioral burden. It only describes parameter constraints and the meaning of autoconnect; it does not disclose side effects, persistence, required permissions, or how it interacts with existing SMB configuration.

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 description is front-loaded and efficient, using a short opening sentence followed by structured parameter notes separated by semicolons. No verbose filler, though it could be slightly more complete without losing brevity.

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?

The tool is a configuration mutation with no annotations, but an output schema exists so return values need not be explained. Parameter semantics are covered well, yet usage context and behavioral effects are missing, leaving the description only partially complete for safe invocation.

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. It explains all four parameters: server_path format with an example, username/password character restrictions, and what autoconnect does. This adds meaningful semantics beyond the bare schema.

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 states a specific verb and resource: 'Configure SMB (Windows share) file saving.' This distinguishes it from general save tools, but it does not differentiate from SMB-related siblings like smb_connect, smb_disconnect, or get_smb_config.

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?

No guidance is provided on when to use this tool versus alternatives such as smb_connect or configure_save. It also omits prerequisites, such as whether a connection must already exist or whether it modifies existing settings.

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