Skip to main content
Glama
ratoshniuk

Growatt MCP Server

by ratoshniuk

register_user

Destructive

Register a new end-user account on Growatt's ShineServer by providing login name, password, email, user type, and country. This creates the user account on Growatt's side.

Instructions

Create an end-user account under this Growatt account. Changes state on Growatt's side.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_nameYesGrowatt login name.
user_typeYesGrowatt user type code.
user_emailYesEmail address of the new user.
user_countryYesCountry name as used by Growatt.
user_passwordYesPassword for the new user. Passes through the assistant.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false and destructiveHint=true, and the description adds only 'Changes state on Growatt's side.' This gives minor external-context but no additional detail about side effects, permissions, or irreversibility beyond what annotations already imply.

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 action front-loaded ('Create an end-user account') followed by a brief state-change note. Zero filler, no redundancy with the schema.

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?

With full schema descriptions, an output schema, and annotations, the mechanical details are covered. However, the description omits any contextual guidance such as checking for existing users or potential failure modes, making it adequate but not comprehensive for a mutation tool.

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% and every parameter has its own description in the schema. The tool description adds no parameter-specific meaning, so the baseline of 3 applies without further compensation.

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 a specific action ('Create an end-user account') with a clear resource and scope ('under this Growatt account'), and the naming distinguishes it from siblings like modify_user, check_user, and list_users. The verb and resource are explicit and unambiguous.

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?

Provides no guidance on when to use this tool versus alternatives such as check_user or modify_user. No mention of prerequisites, exclusions, or selection criteria; the description simply states the action without any routing context.

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