Skip to main content
Glama

update_execution_policy

Idempotent

Adjust your autonomous execution policy: set confidence thresholds, risk limits, calibration requirements, or reexecution gates. Changes take effect immediately and are audit-logged.

Instructions

Partially update the organization's autonomous execution policy: only the fields supplied change, the rest keep their values. min_confidence blocks decisions below that confidence, risk_floor blocks decisions whose worst-case (p5) loss exceeds it, require_calibration makes auto-execution wait for enough recorded outcomes, and allow_reexecution is the idempotency gate. Changes take effect immediately, are recorded in the audit log, and write a new policy snapshot (see list_execution_policy_snapshots). Read the current values first with get_execution_policy. Returns the full updated policy.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
risk_floorNoBlock executions whose worst-case (p5) loss exceeds this.
min_confidenceNoBlock executions whose confidence is below this, 0-1.
allow_reexecutionNoIdempotency gate preventing double-actions.
require_calibrationNoRequire recorded outcomes before auto-execution.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv0.1.3
    • addedInput schema / properties / allow_reexecution / description
      Added value: +"Idempotency gate preventing double-actions."
    • addedInput schema / properties / min_confidence / description
      Added value: +"Block executions whose confidence is below this, 0-1."
    • addedInput schema / properties / require_calibration / description
      Added value: +"Require recorded outcomes before auto-execution."
    • addedInput schema / properties / risk_floor / description
      Added value: +"Block executions whose worst-case (p5) loss exceeds this."
  2. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

Beyond annotations, the description documents observable side effects: changes take effect immediately, are recorded in the audit log, and write a new policy snapshot. It also discloses the partial-update behavior and return value (full updated policy), providing the behavioral context an agent needs.

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?

Each sentence earns its place: partial-update semantics first, then parameter effects, then side effects and related tools, then return value. There is no filler or repetition despite the dense content.

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

Completeness5/5

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

For a tool with no output schema, the description compensates by stating the return value, side effects, preconditions, and parameter semantics. An agent has enough information to call update_execution_policy correctly without inspecting further docs.

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 coverage is 100%, so the schema already documents each parameter. The description adds value by contextualizing them ('blocks decisions below that confidence,' 'idempotency gate,' 'wait for enough recorded outcomes') and by explaining that only supplied fields change.

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 opens with a precise verb and resource: 'Partially update the organization's autonomous execution policy.' It clarifies scope ('only the fields supplied change') and names related sibling tools (get_execution_policy, list_execution_policy_snapshots), so an agent can distinguish it from the read and snapshot tools.

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

Usage Guidelines4/5

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

It gives a clear precondition ('Read the current values first with get_execution_policy') and points to list_execution_policy_snapshots for the resulting snapshot. It does not spell out explicit when-not-to-use conditions, but the context is sufficiently clear for a partial-update tool.

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