Skip to main content
Glama
EpicLabs23

ecp-mcp-server

by EpicLabs23

ecp_mysql_delete_row

Delete a specific row from a MySQL table by its primary key. Requires confirmation because the action is irreversible.

Instructions

Delete a row from a table, identified by primary_key. Irreversible.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmYes
db_nameYes
passwordYes
table_nameYes
db_usernameYes
primary_keyYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the burden. It discloses a critical behavioral trait: 'Irreversible.' It also clarifies the selection criterion (primary_key). However, it does not disclose whether the tool requires elevated permissions, what happens if the primary key is not found, or any confirmation requirement beyond the schema's const constraint.

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 two short sentences with zero filler. The action is front-loaded, and the irreversible warning is valuable. Every word earns its place.

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

Completeness3/5

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

Given 6 required parameters, 0% schema coverage, no annotations, and no output schema, the description is somewhat thin. It clarifies the primary_key semantics and the irreversible hazard, but the agent is left guessing about confirm's role, connection details required, and return behavior.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It explains primary_key ('identified by primary_key'), but the other five parameters (db_name, table_name, db_username, password, confirm) are left undefined. The description adds some meaning but not nearly enough for 6 undocumented parameters.

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 ('Delete'), a resource ('a row from a table'), and an identification method ('by primary_key'). This distinguishes it from siblings like truncate_table, drop_table, and insert_row.

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 like ecp_mysql_truncate_table or ecp_mysql_drop_table. It does warn that the operation is irreversible, which hints at caution, but there are no explicit exclusions or alternatives.

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