Skip to main content
Glama

zont_add_device

Register a new ZONT device in a user account by supplying its type, name, serial, timezone, and optional Wi-Fi, boiler, or notes details.

Instructions

Добавить новое устройство в аккаунт пользователя ZONT.

devtype: идентификатор типа устройства, например T100, T102, L1000, ZTC-700, SX250 и т.д. name: название устройства для пользователя. serial: серийный номер устройства. timezone: часовой пояс устройства. tel_password: телефонный пароль для GSM-устройств (только цифры). notes: произвольные заметки об устройстве. wifi_credentials: параметры Wi-Fi сетей вида [{"ssid": ..., "password": ...}] (только для устройств с Wi-Fi). boiler_vendor: производитель котла. boiler_model: модель котла.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
notesNo
serialYes
devtypeYes
timezoneYes
boiler_modelNo
tel_passwordNo
boiler_vendorNo
wifi_credentialsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full behavioral burden. It does not state whether this requires specific permissions, what happens on duplicate serial numbers or errors, or any rate limits. The parameter hints (e.g., 'tel_password: only digits') add minor context, but overall behavioral disclosure is thin 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?

The description is well-structured with a clear purpose sentence followed by parameter explanations. It is appropriately sized for a 9-parameter tool, though it slightly lacks front-loading of critical usage constraints. Each line earns its place by clarifying a parameter.

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 values need not be explained. However, with no annotations and 0% schema description coverage, the description leaves gaps in behavioral aspects like authentication requirements, error conditions, and whether the device is immediately usable. It is adequate but not complete for a creation tool with nine parameters.

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 does so by providing human-readable explanations for all nine parameters, including examples for devtype (T100, T102, L1000, etc.), format for wifi_credentials, and constraints like 'tel_password: only digits'. This significantly improves parameter understanding beyond the bare 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?

The description opens with a specific verb+resource: 'Добавить новое устройство в аккаунт пользователя ZONT' (Add a new device to the ZONT user account). It clearly distinguishes from siblings like zont_delete_device and zont_update_device, which perform different operations on devices.

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 implies usage by stating it adds a device to a user account, but offers no explicit when-to-use vs alternatives, no prerequisites, and no exclusions. For a creation tool, guidance on needing an authenticated account or conflicts with existing serial numbers would be valuable but is absent.

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