Skip to main content
Glama

combell_mysql_databases_create

Create a MySQL database on a Combell hosting account with a read/write user. Pass a desired name, account ID, and password; the final database name is prefixed automatically. Returns a provisioning job to poll for completion.

Instructions

Create a MySQL database on an account (with a first read/write user). The name you pass is prefixed during provisioning, so the final database name differs. Runs in the background: poll the returned provisioning job for the resource link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
passwordYesPassword for the database user: 8-20 characters, a mix of letters and digits with at least one of each, no spaces, none of * € $ & + } { ' " \
account_idYesAccount to create the database on (see combell_accounts_list)
database_nameYesDesired name; Combell prefixes it (e.g. 'shop' becomes 'ID123456_shop')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior4/5

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

Annotations only say the tool is not read-only, not idempotent, and not destructive. The description adds valuable behavior beyond that: the database name is prefixed, the operation runs in the background, and the result is a provisioning job to poll. This gives the agent needed execution expectations without contradicting 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?

The description is three sentences with no filler. The core action is front-loaded, and each sentence adds necessary information: what is created, how the name is changed, and how the async result is delivered.

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?

With no output schema, the description correctly tells the agent to expect a provisioning job to poll and to use the returned resource link. It could be more complete by naming the provisioning job lookup tool or describing the job field, but for a create action with three well-documented parameters, it is largely sufficient.

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 coverage is 100% and each parameter already has a meaningful description. The tool description mostly repeats the prefixing behavior already present in the database_name schema descriptionahanhasil. It does not add much parameter-level meaning beyond what the schema provides, so the baseline of 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?

The description clearly states the action: create a MySQL database on an account and set up a first read/write user. It distinguishes this tool from mysql users tools and mysql database list/get/delete tools by specifying the creation and provisioning behavior.

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

Usage Guidelines3/5

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

The description gives clear operational context such as async execution and polling, but it does not explicitly say when to use this tool over alternatives like combell_mysql_users_create or combell_mysql_databases_get. Usage is implied rather than stated.

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