Skip to main content
Glama
ratoshniuk

Growatt MCP Server

by ratoshniuk

add_storage_device

Destructive

Attach a battery storage device to an existing solar plant using its serial number, plant ID, and user ID.

Instructions

Attach a storage (battery) device to a plant. Changes state on Growatt's side.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
snYesStorage device serial number.
plant_idYesPlant ID, as returned by get_plants.
c_user_idYesEnd-user ID (c_user_id) as returned by list_users.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.7/5.0
Behavior4/5

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

The phrase 'Changes state on Growatt's side' adds meaningful behavioral context beyond the annotations by clarifying that the effect is external and server-side. It aligns with destructiveHint=true and readOnlyHint=false, and adds useful context about where the mutation occurs.

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 a single, focused sentence that states the action, target, and side effect with no wasted words. It is front-loaded and easy to parse.

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 is adequate for a simple three-parameter tool with a full schema and output schema, but it omits usage context such as when to use it, whether the operation is idempotent, or what prerequisites must be met. The annotations cover safety, but the description alone does not fully prepare an agent for correct invocation in ambiguous situations.

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 parameters are already fully documented in the schema. The description adds no additional meaning to c_user_id, plant_id, or sn beyond what the schema provides, so the baseline score of 3 is appropriate.

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 ('Attach') and resource ('storage (battery) device to a plant'), making the operation's intent immediately clear. It is naturally distinguishable from sibling tools like add_plant and add_datalogger because it names a different resource.

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 gives no guidance on when to use this tool versus alternatives such as add_plant or add_datalogger. There is no mention of prerequisites, exclusions, or conditions that would route an agent to this tool.

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