Skip to main content
Glama
Mokuichi147

@mokuichi147/webos-mcp

by Mokuichi147

設定を変更

set_settings

Change TV system settings by specifying a category and key-value pairs, such as picture settings with backlight. Use when you need to adjust device configuration directly.

Instructions

システム設定を変更する。例: category=picture settings={backlight: 60}。TV のファームウェアによっては WRITE_SETTINGS 権限がなく 401 になる。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceNo対象デバイス名または IP。省略時は既定デバイス(--device / WEBOS_DEVICE / devices.json の defaultDevice)
categoryYes設定カテゴリ
settingsYes変更するキーと値

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It discloses that the operation changes settings and can return 401 without WRITE_SETTINGS permission, which is useful context. However, it does not explain side effects, whether changes are immediate/reversible, or what happens for invalid keys.

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 short, front-loaded with the purpose, and every sentence earns its place: purpose, example, and permission caveat. It is concise without being minimal to the point of uselessness.

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?

Given there is no output schema and no annotations, the description provides a usable overview, example, and an error condition. Still, it omits how to discover valid categories, what the return/response looks like, and whether the device parameter should usually be specified.

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 coverage is 100%, so the baseline is 3. The description adds value with a concrete example ('category=picture settings={backlight: 60}') that illustrates how the category and settings parameters relate, going slightly beyond the generic schema descriptions.

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 clearly states the tool changes system settings ('システム設定を変更する') and includes a concrete example with category and settings. It is distinct from get_settings but does not explicitly differentiate itself from other sibling mutators like set_volume.

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?

The description implies usage by stating what it does and giving an example, but it offers no explicit when-to-use guidance, conditions, or alternatives. It does mention a firmware-dependent permission failure, but not how to choose this tool over siblings.

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