Skip to main content
Glama
EpicLabs23

ecp-mcp-server

by EpicLabs23

ecp_mysql_export_database

Export a MySQL database as a .sql dump returned as text. Use for quick inspections; for large databases, choose the storage backup tool instead.

Instructions

Export a MySQL database as a .sql dump (returned as text - large databases will produce a large result, consider ecp_mysql_backup_to_storage_bd instead for anything beyond a quick look).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
db_nameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals that the output is returned as text and warns that large databases produce large results, which is a meaningful behavioral caveat. It does not mention permissions or side effects, but 'export' and the stated text-return behavior cover the main operational expectations.

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 a single sentence that front-loads the core action and return format, then immediately adds the large-result warning and alternative tool. Every clause earns its place with no redundant filler.

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

Completeness5/5

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

For a one-parameter tool with no output schema, this is complete enough: it states the action, the return format, the operational caveat about size, and the appropriate fallback. An agent can decide whether to call it or use the storage backup sibling without needing additional context.

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?

The schema describes db_name only as a string with no explanation, and the description adds no parameter-level detail beyond the general 'MySQL database' phrase. With 0% schema description coverage, the description should compensate by explaining what db_name expects, but it does not.

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 states a specific verb and resource: 'Export a MySQL database as a .sql dump'. It also names the key differentiator from the sibling backup tool by noting the dump is 'returned as text', making it easy to distinguish from ecp_mysql_backup_to_storage_bd.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance: use this tool for a quick look, but consider ecp_mysql_backup_to_storage_bd for anything beyond that. This clearly routes the agent to the correct sibling based on size and intent.

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