Skip to main content
Glama
Nolex13

viaris-mcp

by Nolex13

set_device_time

Sync the charger clock to the current time or a specified moment. Use timezone and timezoneCode together to configure the correct time zone for accurate scheduling and logging.

Instructions

Synchronizes the charger clock. Without parameters it sets the current time. The time zone requires timezone and timezoneCode together.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chargerNoCharger name. Unnecessary if only one is configured.
timezoneNoPOSIX time zone string, e.g. "CET-1CEST,M3.5.0,M10.5.0/3".
epochSecondsNoMoment to set, in epoch seconds. If omitted, uses the current time.
timezoneCodeNoNumeric time zone code expected by the firmware.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4/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 does disclose the core action, the no-parameter default, and the coupling requirement for timezone fields. However, it does not mention side effects, success/failure behavior, or any required authorization, so it is only moderately transparent.

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?

The description is three short, purposeful sentences with no filler. The core action is front-loaded, and each sentence adds distinct meaning: the operation, the default behavior, and the parameter coupling rule.

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?

For a simple setter with no output schema and no annotations, the description is largely sufficient: it covers the operation, the no-parameter behavior, and the critical timezone parameter constraint. It omits explicit success/error behavior and preconditions, so it is not maximally complete.

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?

The schema already describes all four parameters, so the baseline is 3. The description adds a valuable dependency not captured by the schema: timezone and timezoneCode must be provided together. It also reinforces that omitting parameters sets the current time, which aligns with epochSeconds being optional.

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 uses a specific verb ('Synchronizes') and a specific resource ('charger clock'), clearly distinguishing this tool from the get_* and other set_* sibling tools. It also explains the default no-parameter behavior, leaving no ambiguity about what the tool does.

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 usage context is implied: this tool is for setting or synchronizing the charger clock, and the sibling tools are clearly in different domains. However, there is no explicit when-to-use, when-not-to-use, or named alternative tool, and the timezone pairing note is operational guidance rather than tool-selection guidance.

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