Skip to main content
Glama
Nolex13

viaris-mcp

by Nolex13

set_charger_current_limit

Set the maximum current in amperes that the EV charger can deliver to the car, limiting charging power to the specified value.

Instructions

Sets the maximum current in amperes that the charger can deliver to the car. The allowed maximum is whatever the device declares.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ampsYesMaximum current in amperes, e.g. 16.
chargerNoCharger name. Unnecessary if only one is configured.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

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 must carry the behavioral disclosure burden. It adds one useful caveat ('allowed maximum is whatever the device declares'), but it does not state whether the limit is applied immediately, persists, requires selecting a charger when multiple are configured, or what happens on invalid/out-of-range values. This is a significant gap for a mutating tool.

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 two short, front-loaded sentences with no fluff or tautology. Every sentence contributes either to the core action or to a useful behavioral boundary.

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 description covers the core intent and a device-specific caveat, which is adequate for a simple setter. However, for a mutation with no annotations and no output schema, it omits practical operational details: how to discover the device-declared maximum, whether the requested value is clamped or rejected, and what response or confirmation to expect.

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 100%, so the baseline is 3 even without parameter details in the description. The description reinforces that amps is measured in amperes and adds the device-declared cap context, but it does not add meaningful semantics beyond the schema, especially for the optional charger parameter.

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 a specific action ('Sets the maximum current in amperes') and a specific resource ('charger can deliver to the car'). It distinguishes itself from sibling set_* tools like set_charging_allowed or set_home_power_limit by focusing on current limits, even though it does not explicitly name any sibling.

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?

There is no explicit guidance about when to use this tool versus alternatives, and no mention of excluded scenarios. The note about the device-declared maximum is a constraint on behavior, not usage context or selection criteria.

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