Skip to main content
Glama
EpicLabs23

ecp-mcp-server

by EpicLabs23

ecp_postgres_insert_row

Insert a row into a PostgreSQL table by providing database details, credentials, and field values. Enables adding data records to databases within a hosting account.

Instructions

Insert a row into a table.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valuesYes
confirmYes
db_nameYes
passwordYes
table_nameYes
db_usernameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

D1.8/5.0
Behavior1/5

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

No annotations are provided, so the description must disclose behavior. It does not mention that the operation requires a confirmation flag (confirm=true), does not describe side effects, error conditions, or what happens on conflicting data. The description provides zero behavioral information beyond the bare action.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely short (one sentence), which is concise but severely under-specified. It fails to convey essential information about parameters, return values, or usage context, making it more of a placeholder than a useful definition.

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

Completeness1/5

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

Given the tool's complexity (6 required params, a nested 'values' object, and a confirmation flag), this description is wildly incomplete. It lacks field-level guidance, no mention of required credentials, no note on data format, and no indication of what the tool returns. An agent cannot safely invoke this tool without substantial guesswork.

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

Parameters1/5

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

The schema has 6 required parameters with zero descriptions (coverage 0%). The description adds no parameter semantics – it does not explain what 'values' should contain, the format of credentials, or the purpose of the confirm flag. The tool is completely opaque to an agent trying to construct a valid call.

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 states the verb (insert) and resource (a row into a table), which is clear at a high level. However, it does not mention the database type, so it fails to distinguish from sibling insert_row tools for MySQL, MSSQL, etc. The tool name carries that information but the description itself is ambiguous.

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 over alternatives such as ecp_mysql_insert_row or ecp_mssql_insert_row, nor any conditions or prerequisites. The agent is left to infer that this is for PostgreSQL solely from the tool name.

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