Skip to main content
Glama
ratoshniuk

Growatt MCP Server

by ratoshniuk

add_plant

Destructive

Register a new solar plant for an existing user by providing user ID, plant name, and peak power.

Instructions

Create a new plant for an end user. Changes state on Growatt's side.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesPlant name.
c_user_idYesEnd-user ID (c_user_id) as returned by list_users.
peak_powerYesInstalled peak power in kWp.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover readOnly=false, destructive=true, and idempotent=false. The description adds value by stating that the operation changes state on Growatt's side, clarifying the external effect of the call. It does not contradict the annotations.

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 no filler. The action is front-loaded, and the second sentence adds a meaningful behavioral note rather than repeating the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With three fully documented required parameters, a rich annotation set, and an output schema, the description provides everything an agent needs to decide and invoke the tool. Return-value details are unnecessary because the output schema exists.

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%, with all three parameters including units and source context already documented (e.g., c_user_id returned by list_users, peak_power in kWp). The description adds no parameter-level meaning beyond the schema, so baseline 3 applies.

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?

States the exact operation (create), the resource (a new plant), and the target (an end user). This clearly distinguishes it from retrieval siblings like get_plants and the mutation sibling modify_plant.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the intended use case clear: creating a new plant for an end user. It does not explicitly name alternatives or exclusion conditions, but the 'Create' verb and mention of end-user scope provide sufficient context against the sibling tools.

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