Skip to main content
Glama
4alvit

mcp-venus-os

by 4alvit

get_inverter_status

Retrieve current inverter mode and state from Venus OS. Query all discovered units or specify an instance for a single device.

Instructions

Get inverter mode and state.

instance=0 returns every discovered vebus unit as readings; instance=N a single device dict.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
instanceNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the burden, and it discloses the key behavioral nuance: instance=0 aggregates all discovered vebus units under 'readings', while instance=N returns a single device dict. The verb 'Get' also signals a read-only operation.

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?

Two short sentences, with the purpose front-loaded and the only parameter explained immediately after. There is no filler, repetition, or unnecessary detail.

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 one-parameter, read-only getter with an output schema, the description is largely sufficient. It does not mention a possible dependency on the MQTT tools listed as siblings, but that remains an inference rather than a clear requirement.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema only states that instance is an integer defaulting to 0. The description adds the essential semantics: 0 is a sentinel for all units, and a non-zero value selects a single device, which is entirely absent from the 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 states the action and object directly ('Get inverter mode and state'), then clarifies the data scope with the instance rule. This makes it clearly distinct from write siblings like set_inverter_mode and from getters for other resources.

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?

No explicit when-to-use guidance, exclusions, or alternatives are provided. The agent must infer from the tool name that it is the read counterpart to set_inverter_mode, and there is no mention of list_devices for enumeration or any MQTT prerequisites.

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