Skip to main content
Glama
lrferr

mysql-mcp-server

by lrferr

create_backup

Create a MySQL database backup with optional compression, data, and structure, saving it to a chosen path or connection.

Instructions

Cria um backup do banco de dados

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
compressNoComprimir o backup
databaseYesNome do database para backup
backupPathNoCaminho para salvar o backup./backups/
includeDataNoIncluir dados no backup
connectionNameNoNome da conexão para usar
includeStructureNoIncluir estrutura no backup

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.5

TDQS

C2.9/5.0
Behavior2/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, and it says nothing about where the backup lands, whether it overwrites an existing file, whether the operation blocks or streams, what permissions are required, or what happens on a large database. For a write-side operation with zero annotation coverage this is a substantial gap.

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 front-loaded sentence with zero filler. It is efficient, though the efficiency comes from under-specification rather than disciplined 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 six-parameter mutation tool with no annotations and no output schema, the definition is far too thin. An agent cannot learn from the description what the call returns, whether failures are recoverable, or how the output path behaves when backupPath defaults to './backups/'.

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 six parameters (database, backupPath, compress, includeData, includeStructure, connectionName) are already documented in the schema. The description adds no parameter semantics beyond that, so the baseline 3 applies.

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

Purpose4/5

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

States a specific verb and resource ('Cria um backup do banco de dados'), which is unambiguous on its own. However, it does nothing to distinguish it from the closely related siblings restore_backup and list_backups, which an agent must choose between.

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 when-to-use guidance, no prerequisites, and no mention of the alternative backup-related tools (restore_backup, list_backups). The agent must infer the context from the name alone.

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