Skip to main content
Glama

verified__call_verified

Relay a tool call to a registered MCP service and get a tamper-evident receipt notarizing the exchange. Idempotent calls return cached results; failures receipted.

Instructions

[verified — tamper-evident delivery receipts for any MCP server's tool calls] Relay a tools/call to a registered MCP service and notarize the exchange: request hash + response hash + outcome land in a tamper-evident receipt chain. Idempotent on call_id (a replay returns the original receipt and cached result — the downstream is never double-called). Failures are receipted evidence, not silence.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolYes
call_idYes
argumentsNo
timeout_sNo
service_idYes
payment_refNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed13 schema fields changedv0.1.11
    • addedInput schema / properties / arguments / anyOf
      Added value: +[
      +  {
      +    "additionalProperties": true,
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / arguments / default
      Added value: +null
    • addedInput schema / properties / arguments / title
      Added value: +"Arguments"
    • removedInput schema / properties / arguments / type
      Removed value: -"object"
    • addedInput schema / properties / call_id / title
      Added value: +"Call Id"
    • addedInput schema / properties / payment_ref / anyOf
      Added value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / payment_ref / default
      Added value: +null
    • addedInput schema / properties / payment_ref / title
      Added value: +"Payment Ref"
    • removedInput schema / properties / payment_ref / type
      Removed value: -"string"
    • addedInput schema / properties / service_id / title
      Added value: +"Service Id"
    • addedInput schema / properties / timeout_s / title
      Added value: +"Timeout S"
    • addedInput schema / properties / tool / title
      Added value: +"Tool"
    • addedInput schema / title
      Added value: +"call_verifiedArguments"
  2. Changed10 schema fields changedv0.1.9
    • removedInput schema / properties / arguments / anyOf
      Removed value: -[
      -  {
      -    "additionalProperties": true,
      -    "type": "object"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / arguments / default
      Removed value: -null
    • removedInput schema / properties / arguments / title
      Removed value: -"Arguments"
    • addedInput schema / properties / arguments / type
      Added value: +"object"
    • removedInput schema / properties / call_id / title
      Removed value: -"Call Id"
    • addedInput schema / properties / payment_ref
      Added value: +{
      +  "type": "string"
      +}
    • removedInput schema / properties / service_id / title
      Removed value: -"Service Id"
    • removedInput schema / properties / timeout_s / title
      Removed value: -"Timeout S"
    • removedInput schema / properties / tool / title
      Removed value: -"Tool"
    • removedInput schema / title
      Removed value: -"call_verifiedArguments"
  3. Addedv0.1.8

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations, the description carries the burden. It discloses key behaviors: idempotency (reuse of call_id returns cached result, downstream not double-called), tamper-evident receipt creation, and failure handling (receipted evidence). However, it does not detail side effects like the receipt chain's growth or potential authorization requirements, leaving some gaps.

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 is relatively concise, with the core purpose in the first sentence and idempotency/failure details following. It avoids redundancy but could be more structured (e.g., bullet points for parameters). Still, it is front-loaded and efficient.

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

Completeness3/5

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

Given the complexity (6 params, no output schema, idempotency, receipt chain), the description explains the intent and idempotency but lacks parameter details, return value format, and prerequisites (e.g., registration via register_service). It is adequate for a basic understanding but incomplete for autonomous invocation without further context.

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 explain parameters. It names some parameters indirectly (service_id, call_id) but does not describe tool, arguments, timeout_s, or payment_ref. Without this, agents may misuse or omit important parameters. The description adds minimal value beyond the schema field names.

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 clearly states the tool's action: relaying a tool call to a registered MCP service and notarizing the exchange. It specifies the verb (relay, notarize) and the resource (tamper-evident receipt chain). The distinctive 'verified' branding and mention of idempotent receipts differentiate it from siblings like get_receipt or register_service.

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 provides useful context, including idempotency on call_id (replay safety) and that failures are recorded as receipts. However, it does not explicitly state when to use this tool versus alternatives, nor does it mention prerequisites like registering the service first. The guidance is good but not comprehensive.

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