Skip to main content
Glama
lrferr

mysql-mcp-server

by lrferr

create_schema

Creates a new MySQL database schema, allowing specification of charset, collation, and connection settings.

Instructions

Cria um novo schema no banco de dados

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
charsetNoCharset do schemautf8mb4
collateNoCollation do schemautf8mb4_unicode_ci
schemaNameYesNome do schema a ser criado
ifNotExistsNoCriar apenas se não existir
connectionNameNoNome da conexão para usar

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.5

TDQS

C2.4/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full behavioral burden, yet it discloses nothing beyond the bare creation action. It does not state permission requirements, what happens if the schema already exists, or any side effects of this mutation.

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?

A single short sentence with no wasted words, and the action is front-loaded. Its brevity, however, reflects under-specification rather than tight editing.

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 mutation tool with five parameters, no annotations, and no output schema, the description is far too thin. An agent gains no information about permissions, idempotency behavior, or the result of the operation.

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 all five parameters (charset, collate, schemaName, ifNotExists, connectionName) are already documented in the schema. The description adds no parameter meaning beyond that, which matches the baseline 3 when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource ("Cria um novo schema"), so the basic action is clear. However, it is barely more than a restatement of the tool name and offers no differentiation from siblings like drop_schema or list_schemas.

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?

There is no guidance on when to use this tool versus alternatives such as drop_schema or list_schemas, nor any prerequisites or preconditions. The agent must infer all usage context.

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