Skip to main content
Glama
ProofHoldings

@proof-holdings/mcp-server

Official

create_confirmation

Creates a human-in-the-loop confirmation request, sending an approval prompt to configured channels and accepting the first response as the decision.

Instructions

Create a HITL confirmation request. Sends an approval request to the channels configured on the referenced HITL config. First response wins.

Agent usage: The HITL config referenced by hitl_id must be authorized before you can create confirmations. If this returns a 403 or "not authorized" error, call request_hitl_authorization on the HITL config first, then wait for the user to approve via the messaging channel. After creating a confirmation, poll get_confirmation to check for approval/denial, or use get_confirmation_approval_link to generate a fresh link for the user.

Encryption (v1 vs v2): when the HITL config has E2E encryption enabled, message must be a JSON ciphertext envelope, not plaintext. Choose the version by who must be able to decrypt:

  • v1 (single-recipient): wraps the content key for the config owner only. Use when there are no enrolled non-owner approvers.

  • v2 (multi-recipient): additionally wraps the content key for each enrolled approver via an approver_ek map, so every approver can decrypt. Use when the config has enrolled approvers — otherwise approvers get "wrong password" on the approval page. Build it with the SDK encryptMessageV2(plaintext, ownerPublicKey, hitlId, approverKeys) after fetching the approvers via the SDK getApproverKeys(hitlId) (GET /api/v1/hitl/:id/approver-keys). AAD is the hitlId.

ACCESS: needs a Proof account. Set PROOF_API_KEY and restart this server, then call this tool again. start_login does NOT open this tool.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hitl_idYesHITL config ID whose channels will receive the approval request
messageYesHuman-readable description of what needs approval
proof_expiry_daysNoPer-request proof expiry override in days (7, 30, 90, or 365)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.1.0

TDQS

A5/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral burden, and it delivers: authorization requirements, error response behavior, encryption mode selection, and environment setup via PROOF_API_KEY. It even warns that start_login does NOT open this tool, which is a non-obvious behavioral trait.

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?

The description is long but organized into clear sections (overview, Agent usage, Encryption, ACCESS), with the core purpose front-loaded. Each paragraph adds necessary operational information; there is no filler.

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 HITL confirmation creation tool with no output schema and no annotations, this description covers purpose, preconditions, failure handling, encryption complexity, follow-up polling, and access requirements. Nothing critical is missing for an agent to call it correctly.

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

Parameters5/5

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

Although the schema already documents all three parameters, the description adds critical semantic depth: hitl_id must reference an authorized config, and message is not plaintext under E2E encryption but a JSON ciphertext envelope with v1/v2 selection rules and SDK guidance. This goes well beyond the schema field descriptions.

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 first line states a specific verb and resource: "Create a HITL confirmation request." It then adds behavior that distinguishes it from related tools: it sends an approval request to configured channels and notes "First response wins." This clearly separates it from get_confirmation, wait_for_confirmation, and request_hitl_authorization.

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

Usage Guidelines5/5

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

The "Agent usage" section gives explicit preconditions (HITL config must be authorized), error recovery (on 403 call request_hitl_authorization and wait for user approval), and post-actions (poll get_confirmation or use get_confirmation_approval_link). This is exactly the when-to-use guidance an agent needs, with named alternatives.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ProofHoldings/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server