Skip to main content
Glama

combell_mysql_users_set_password

Idempotent

Change the password for a MySQL database user to update credentials and restore access. Specify database name, user name, and a new password meeting complexity rules.

Instructions

Change the password of a MySQL database user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
passwordYesNew password: 8-20 characters, a mix of letters and digits with at least one of each, no spaces, none of * € $ & + } { ' " \
user_nameYes
database_nameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already state readOnlyHint=false, idempotentHint=true, and destructiveHint=false. The description only confirms a mutation and adds no additional behavioral context, such as whether changing the password disconnects active sessions, requires privileges, or takes effect immediately. There is no contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single front-loaded sentence with no filler, and every word carries meaning. It is concise, but the terseness contributes to under-specification in other dimensions, so it does not receive full marks.

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

Completeness2/5

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

For a tool with three required parameters, two of which are undocumented in both schema and description, and no output schema, this description is not complete enough for an agent to call it with full confidence. It lacks guidance on prerequisites, side effects, and how it relates to sibling MySQL user operations.

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

Parameters2/5

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

Schema description coverage is only 33%, and only 'password' is documented in the schema. The tool description does not explain 'user_name' or 'database_name' or their relationship, so it fails to compensate for the largely undocumented parameter set.

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, 'Change', and a clear resource, 'password of a MySQL database user'. This distinguishes it from siblings such as combell_mysql_users_create, combell_mysql_users_delete, and combell_mysql_users_set_status, and the 'MySQL' qualifier separates it from combell_mailboxes_set_password.

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, no prerequisites, and no exclusions. An agent must infer from the tool name and sibling list that this applies to an existing MySQL user, and there is no mention of when set_password should be preferred over create or set_status.

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

Deploy Server

Other Tools