Skip to main content
Glama
Kuass

oracle-db-mcp

by Kuass

exec_pro_sql

Executes PL/SQL code blocks, including stored procedures, functions, and anonymous blocks, to perform operations on Oracle databases.

Instructions

Execute PL/SQL code blocks including stored procedures, functions and anonymous blocks

Args:
    execsql (string): The PL/SQL code block 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 full burden. It implies arbitrary code execution but discloses nothing about permissions required, transaction/commit behavior, side effects, or error handling — critical omissions for a tool that runs stored procedures and anonymous blocks.

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?

Front-loaded with the capability statement followed by a compact Args block; appropriately sized with no padding. The Args restatement is slightly redundant with the schema but harmless.

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 an arbitrary-code-execution tool with no annotations and no output schema, the description should at minimum cover execution context, permissions, and response/error shape. None of that is present, leaving significant gaps for an agent to call it safely.

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, but it only restates the parameter as 'the PL/SQL code block to execute'. It adds the useful hint that the input is PL/SQL rather than plain SQL, but gives no format, size, or delimiter guidance.

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 ('Execute') and resource scope ('PL/SQL code blocks including stored procedures, functions and anonymous blocks'), which is more informative than a bare name restatement. However, it never distinguishes itself from siblings like exec_dml_sql, exec_ddl_sql, or read_query, which sit in the same execution family.

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 exclusions, and no mention of the alternative exec_dml_sql/exec_ddl_sql tools. An agent must guess when a stored procedure call belongs here versus in the sibling executors.

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