Skip to main content
Glama

PrivateDAO Agent Exchange

PrivateDAO submit_payment

submit_payment
Destructive

PrivateDAO submit_payment

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes
signatureYesFinalized Solana transaction signature.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties
      Added value: +{
      +  "job_id": {
      +    "pattern": "^job_[A-Za-z0-9-]+$",
      +    "type": "string"
      +  },
      +  "signature": {
      +    "description": "Finalized Solana transaction signature.",
      +    "type": "string"
      +  }
      +}
    • addedInput schema / required
      Added value: +[
      +  "job_id",
      +  "signature"
      +]
  2. Changed2 schema fields changed
    • removedInput schema / properties
      Removed value: -{
      -  "job_id": {
      -    "pattern": "^job_[A-Za-z0-9-]+$",
      -    "type": "string"
      -  },
      -  "signature": {
      -    "description": "Finalized Solana transaction signature.",
      -    "type": "string"
      -  }
      -}
    • removedInput schema / required
      Removed value: -[
      -  "job_id",
      -  "signature"
      -]
  3. First observed

TDQS

D1.3/5.0
Behavior2/5

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

The annotations already mark the operation as destructive, non-read-only, and non-idempotent, so the safety profile is partially available. However, the actual description discloses no behavioral context beyond that, such as whether funds move irreversibly, what state changes occur, or what happens to the referenced job.

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 short, but this is under-specification rather than conciseness. It contains no information beyond the tool's title, so it does not earn its place as a meaningful definition.

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?

For a financially significant, destructive operation with no output schema and no usage context, this description is severely incomplete. An agent cannot determine prerequisites, expected effects, sequencing relative to create_paid_job, or how to verify success afterward.

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

Parameters1/5

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

The description contributes zero parameter meaning. Schema coverage is only 50% because job_id has only a regex pattern and no semantic explanation, and the description does not compensate for that gap or clarify how job_id relates to the finalized Solana signature.

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 call this tool, what prerequisite conditions must be met, or which alternatives should be used instead. Sibling tool names suggest a payment lifecycle, but the description gives the agent no basis for selecting submit_payment over create_paid_job or job_status.

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.