Skip to main content
Glama

PrivateDAO Agent Exchange

PrivateDAO verify_basic

verify_basic
Read-onlyIdempotent

PrivateDAO verify_basic

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mintNoSolana mint address to inspect.
assetNoAlias for mint.
recordNoStructured record to hash and verify.
networkNoOptional target network identifier.
expected_digestNoOptional expected canonical digest.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / anyOf
      Added value: +[
      +  {
      +    "required": [
      +      "mint"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "asset"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "record"
      +    ]
      +  }
      +]
    • addedInput schema / properties
      Added value: +{
      +  "asset": {
      +    "description": "Alias for mint.",
      +    "type": "string"
      +  },
      +  "expected_digest": {
      +    "description": "Optional expected canonical digest.",
      +    "type": "string"
      +  },
      +  "mint": {
      +    "description": "Solana mint address to inspect.",
      +    "type": "string"
      +  },
      +  "network": {
      +    "description": "Optional target network identifier.",
      +    "type": "string"
      +  },
      +  "record": {
      +    "description": "Structured record to hash and verify.",
      +    "type": "object"
      +  }
      +}
  2. Changed2 schema fields changed
    • removedInput schema / anyOf
      Removed value: -[
      -  {
      -    "required": [
      -      "mint"
      -    ]
      -  },
      -  {
      -    "required": [
      -      "asset"
      -    ]
      -  },
      -  {
      -    "required": [
      -      "record"
      -    ]
      -  }
      -]
    • removedInput schema / properties
      Removed value: -{
      -  "asset": {
      -    "description": "Alias for mint.",
      -    "type": "string"
      -  },
      -  "expected_digest": {
      -    "description": "Optional expected canonical digest.",
      -    "type": "string"
      -  },
      -  "mint": {
      -    "description": "Solana mint address to inspect.",
      -    "type": "string"
      -  },
      -  "network": {
      -    "description": "Optional target network identifier.",
      -    "type": "string"
      -  },
      -  "record": {
      -    "description": "Structured record to hash and verify.",
      -    "type": "object"
      -  }
      -}
  3. First observed

TDQS

D1.8/5.0
Behavior3/5

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

Annotations declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is already covered. The description adds no behavioral context beyond the annotations, but it does not contradict them either. With annotations carrying the burden, a 3 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely short, but this is under-specification rather than conciseness. It contains no information beyond the tool name, so it fails to earn its place as a meaningful description.

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

Completeness1/5

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

The tool has 5 parameters, an anyOf constraint, nested objects, and no output schema. The description provides zero context for how to invoke it correctly, what the verification does, or what the result means. This is completely inadequate for a tool with this complexity.

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 all five parameters. The description adds no additional meaning about how parameters relate or how to choose between mint, asset, and record. Baseline 3 is correct when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose1/5

Does the description clearly state what the tool does and how it differs from similar tools?

Tautological: description restates name/title.

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

Usage Guidelines1/5

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

There is no guidance on when to use this tool versus alternatives. The sibling tools include related operations like agent_match, get_receipt, and network_stats, but the description gives no context for selecting verify_basic. The schema's anyOf structure implies three usage modes, but the description does not explain them.

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.