Skip to main content
Glama
lzyruc

enterprise-agent-mcp

by lzyruc

decide_enterprise_approval

Approve or reject a pending high-risk operation as a manager or admin, adding an optional comment to record the decision.

Instructions

Approve or reject a pending high-risk operation as a manager/admin.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
commentNo
approvedYes
approval_idYes
reviewer_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden. It signals a consequential decision ('high-risk operation') but never says whether the action is irreversible, what state change approve vs reject produces, whether decisions can be revoked, or how authorization is verified.

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?

A single tight sentence with the verb front-loaded and no filler. It is efficient, though arguably too terse for a destructive decision tool with four parameters.

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?

A mutating, authorization-gated tool with no annotations, no output schema, and four undocumented parameters needs substantially more than one sentence. The description does not cover return behavior, error/permission cases, or parameter requirements.

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 coverage is 0% and the description documents none of the four parameters. The boolean `approved` and `reviewer_id` can be loosely inferred from 'approve or reject' and 'as a manager/admin', but `approval_id` and `comment` are entirely unexplained, including whether comment is required on rejection.

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 gives a specific verb pair (approve/reject) and a clear resource (pending high-risk operation), plus a role constraint (manager/admin). No sibling tool overlaps this approval domain, so sibling differentiation is not needed, but the description does not name it as the only decision tool.

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

Usage Guidelines3/5

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

It implies when to use it by stating the object is a 'pending high-risk operation' and the caller must be a manager/admin. There is no explicit when-not guidance, no statement of prerequisites such as where the approval_id comes from, and no named alternative.

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