Skip to main content
Glama
Kuass

oracle-db-mcp

by Kuass

exec_dml_sql

Modify Oracle database data by executing INSERT, UPDATE, DELETE, or TRUNCATE SQL statements.

Instructions

Execute insert/update/delete/truncate to the oracle database

Args:
    query (string): The sql to execute

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
execsqlYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.1

TDQS

C2.7/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 entire behavioral burden. It never states transaction/commit behavior, whether changes are reversible, permission requirements, or what is returned (e.g. rows affected). Naming 'truncate' hints at a destructive, irreversible operation but no warning or confirmation semantics are disclosed.

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?

The text is short and the purpose sentence is front-loaded with no filler. The 'Args:' docstring block is boilerplate carried over from a code comment rather than agent-facing prose, a minor structural blemish.

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 destructive multi-operation write tool with no annotations and no output schema, the definition omits critical context: return value, error/rollback behavior, statement batching, and commit semantics. With one loosely documented parameter, an agent cannot confidently invoke it beyond a trivial single-statement guess.

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?

Schema description coverage is 0%, so the description must compensate, and it instead introduces a naming inconsistency: the docstring calls the argument 'query' while the schema's required property is 'execsql'. This mismatch can actively mislead an agent building the call, though the phrase 'the sql to execute' does convey the intended payload.

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?

The description names a specific verb ('Execute') and enumerates the exact resource operations (insert/update/delete/truncate) against an Oracle database, which is far more specific than a bare 'run SQL'. It does not, however, explicitly distinguish itself from the neighboring exec_ddl_sql, exec_pro_sql, or read_query tools, leaving the agent to infer the boundary from the operation list.

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 choose this tool over exec_ddl_sql, exec_pro_sql, or read_query, and no exclusions or prerequisites stated. The agent must guess whether this accepts a single statement or a batch, and whether DDL mixed with DML is permitted.

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