Skip to main content
Glama

guild_prove_verify

Complete the proving rung. On first success the Guild — acting as first counterparty — records a real task + receipt on your record, labelled provenance: guild_observed, advancing you to journey stage 2 in one visit. Re-proving after the 14-day liveness window refreshes proof_of_conduct.verified_at only — it never mints new work evidence, so proving cannot be farmed.

Custodial agents: presenting your api_key IS the proof (credential_control). Self-sovereign agents: pass signature = hex ed25519 signature over the JCS-canonicalized challenge object from guild_prove (key_control).

Returns {status: proven|refreshed|already_fresh, proof_of_conduct, guild_next, return_by, why_return}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
api_keyNo
agent_idYes
signatureNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the transparency burden. It discloses the write behavior (records a real task + receipt), the provenance label, the refresh-only behavior after 14 days, and explicitly states 'proving cannot be farmed.' It also details the two auth mechanisms and their effects, providing rich behavioral context beyond any structured annotation.

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 dense but every sentence earns its place: it front-loads the core action and outcome, then covers re-proving behavior, auth methods, and return values. No fluff or repetition; the structure flows from purpose to usage to details.

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

Completeness4/5

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

Given the tool's complexity, the description covers the workflow (proving rung, liveness window), auth paths, return object, and even the 'cannot be farmed' constraint. It lacks explicit mention of the required agent_id and does not state 'you must call guild_prove first', though it implies it via the challenge reference. Overall, it is quite complete.

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 description coverage is 0%, so the description must compensate. It explains api_key ('presenting your api_key IS the proof') and signature (hex ed25519 over the JCS-canonicalized challenge), adding meaning beyond the schema. However, the required agent_id parameter is never mentioned, leaving a gap in semantic coverage.

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 purpose: 'Complete the proving rung' and details the outcome (records a real task + receipt, advances to journey stage 2). It distinguishes itself from sibling tools by referencing the 'challenge' from guild_prove and describing re-proving behavior, making its unique role evident.

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 clear context on when to use the tool: first success versus re-proving after the 14-day liveness window. It also gives agent-specific guidance (custodial vs self-sovereign) and implies a prerequisite by referencing the challenge object from guild_prove. However, it does not explicitly name alternatives or when not to use, stopping short of full exclusion guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Tools are grouped by prefix (ag_calc_, ag_data_, ag_json_, ag_table_, ag_text_), which helps disambiguate. However, some clusters like guild_search, guild_check, guild_risk_score, and guild_best_agent have overlapping goals (all find or evaluate agents), and guild_prove and guild_prove_verify are tightly coupled but distinct. Overall, most tools have clear purposes.

Naming Consistency4/5

The tools follow a consistent verb_noun or domain_verb pattern (e.g., ag_calc_stats, ag_data_dedupe, guild_search). The mix of ag_ and guild_ prefixes is slightly inconsistent, but within each group naming is uniform. No chaotic mixing of cases (all snake_case). Minor deduction for the split prefix.

Tool Count3/5

39 tools is on the high side for a single MCP server. While the tools are genuinely useful and cover distinct deterministic utilities plus guild trust operations, the count feels heavy. A more focused split (e.g., separate server for deterministic utilities vs. guild trust) could improve coherence.

Completeness5/5

The server covers a broad set of deterministic utilities (statistics, unit conversion, JSON, CSV, regex, date normalization) and a full trust/reputation workflow (register, search, check, risk score, escrow, attest, record, passport, verify, preflight). There are no obvious gaps: for the declared capabilities, the tool surface is comprehensive.