Skip to main content
Glama

computegrid_verify_proof

Submit a compute job for verification by the Verification Fleet (4 agents). Returns Groth16-style proof. $0.001/proof in USDC.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
driverYesSource driver: ionet | render | akash | aleo | custom
job_idYesJob ID to verify
submitter_didYesDID of the submitting agent
claimed_output_hashYesSHA-256 of claimed output

Schema Changelog

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

  1. Changed9 schema fields changed
    • removedInput schema / properties / claim
      Removed value: -{
      -  "description": "Optional claim metadata (model_id, job_id, output_hash, ...)",
      -  "type": "object"
      -}
    • addedInput schema / properties / claimed_output_hash
      Added value: +{
      +  "description": "SHA-256 of claimed output",
      +  "type": "string"
      +}
    • addedInput schema / properties / driver
      Added value: +{
      +  "description": "Source driver: ionet | render | akash | aleo | custom",
      +  "type": "string"
      +}
    • addedInput schema / properties / job_id
      Added value: +{
      +  "description": "Job ID to verify",
      +  "type": "string"
      +}
    • removedInput schema / properties / proof
      Removed value: -{
      -  "description": "Groth16 proof envelope (dict {a,b,c} or 8-element list of BN254 field elements)"
      -}
    • removedInput schema / properties / proof_system
      Removed value: -{
      -  "description": "Proof system identifier (default 'groth16')",
      -  "type": "string"
      -}
    • removedInput schema / properties / public_inputs
      Removed value: -{
      -  "description": "List of BN254 field elements (hex strings or ints)",
      -  "type": "array"
      -}
    • addedInput schema / properties / submitter_did
      Added value: +{
      +  "description": "DID of the submitting agent",
      +  "type": "string"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "proof",
      -  "public_inputs"
      -]New value: +[
      +  "job_id",
      +  "driver",
      +  "claimed_output_hash",
      +  "submitter_did"
      +]
  2. First observed

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It mentions the fleet size and cost, but omits critical behavioral details: whether the operation is synchronous, what happens on verification failure, required permissions/auth, and any side effects. For a submission/payment-triggering action, this is a significant gap.

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 extremely concise: three short sentences that state the action, return value, and cost. Every sentence earns its place, with no filler or redundancy.

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

Completeness2/5

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

With no annotations or output schema, the description is the only source of behavioral context. It fails to explain error handling, response format beyond 'proof', whether the job submission is asynchronous, or any prerequisites. This is incomplete for a tool that initiates a paid verification process.

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?

Schema description coverage is 100%, so the schema already documents each parameter. The description adds no parameter-specific meaning, but it doesn't need to since the schema is complete. Baseline 3 is appropriate.

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 clearly states the action ('Submit a compute job for verification') and the resource (Verification Fleet), and notes the return value (Groth16-style proof). It distinguishes from siblings (capacity/agents) by focusing on verification. However, the tool name 'verify_proof' suggests verifying a proof, while the description says submitting a job, which creates minor ambiguity.

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

Usage Guidelines3/5

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

Usage is implied: use this when you need to verify a compute job and obtain a proof. However, there is no explicit guidance on when not to use it or alternatives, and sibling tools are not mentioned.

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

A3.9/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: capacity telemetry, agent roster, and proof verification. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tools follow the same computergrid_ verb_noun pattern, using snake_case consistently. The naming is predictable and easy to understand.

Tool Count4/5

With only 3 tools, the server is concise and focused. While slightly on the lower end, each tool earns its place for the intended read-only/verification scope.

Completeness4/5

The server provides capacity, agent list, and proof verification, covering the core 'read-only + verify' domain. Minor gaps exist, such as no job status or history, but these are not critical for the stated purpose.