Skip to main content
Glama
emiliaprotocol

emilia-mcp-server

Official

ep_check_signoff

Read-only

Poll a pending authorization receipt after a guarded action returns BLOCKED. Returns PENDING, APPROVED_PENDING_CONSUME, CONSUMED, or DENIED; approval alone is not execution permission.

Instructions

Poll a pending authorization after ep_guard_action returns BLOCKED. Pass the receipt_id. Returns PENDING, APPROVED_PENDING_CONSUME, CONSUMED, or DENIED. Approval alone is not permission to execute: the executor must match action_hash and atomically consume the receipt at its own choke point.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
receipt_idYesThe receipt_id returned by ep_guard_action.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.2

TDQS

A4/5.0
Behavior4/5

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

The description discloses critical behavioral traits beyond the annotations: the possible return statuses and the requirement to atomically consume the receipt at the executor's choke point, preventing misuse. This adds substantial context on top of readOnlyHint and destructiveHint, with no contradiction.

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 description consists of four sentences, each providing necessary information: purpose, parameter, return values, and a caveat. It is efficient and front-loaded, though slightly longer than minimal, but every sentence earns its place.

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?

The description fully equips an agent to call the tool: it specifies the trigger condition, the required parameter, the expected return values, and the critical operational caveat. With a single parameter and no output schema, nothing essential is missing.

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

Parameters3/5

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

The description only says 'Pass the receipt_id' which adds nothing beyond the schema's own description of the parameter. Since schema coverage is 100%, the description does not enhance parameter understanding; it merely restates the obvious.

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 states a specific verb ('poll') and resource ('pending authorization'), and clarifies it operates after ep_guard_action returns BLOCKED. It also lists the return statuses. However, it does not explicitly differentiate from sibling tools like ep_verify_receipt, so it is clear but not explicitly distinguishing.

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?

The description gives explicit usage context: use this tool after ep_guard_action returns BLOCKED, and warns that approval alone is not permission to execute, implying the need to consume. It does not mention when not to use or name alternatives, so it provides clear context but no exclusions.

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