Skip to main content
Glama
vmayfuture

网易春风 · 心跳元力 MCP

by vmayfuture

set_rotary

Set DK-META2 rotary intensity via local BLE. A non-zero level requires confirm=true to apply the change safely.

Instructions

设置 DK-META2 旋转强度;非零值必须 confirm=true。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
levelYes
confirmNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/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 the important safety gate (non-zero values require explicit confirmation), which is real behavioral context. However it omits repeat-call semantics, what happens if confirm is false, connection prerequisites, and whether the value persists, leaving substantive gaps 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single compact sentence that front-loads the purpose and immediately qualifies the confirm requirement. No wasted text, though it is terse enough that some necessary detail is simply absent rather than trimmed.

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-value explanation is not needed. For a device-mutating tool with no annotations, the description covers the core safety rule but omits prerequisites (e.g. connect_device first), level bounds, and failure/edge behavior.

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% across two parameters, so the description does all the work. It conveys that 'level' is rotation intensity and that 'confirm' is a boolean gate tied to non-zero levels, but adds no ranges, units, or bounds for 'level' or default behavior for 'confirm'.

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?

Names a specific verb+resource: setting the rotation intensity of the DK-META2 device, which distinguishes it from the sibling set_vibration and set_linear tools. It is clear about what is affected, though it does not explicitly contrast itself against stop_device or the other setter siblings.

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?

Provides one concrete usage condition: a non-zero level requires confirm=true, which is a genuine invocation rule an agent must honor. It offers no guidance on when to choose this over set_vibration/set_linear/stop_device or any prerequisite ordering.

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