Skip to main content
Glama

Server Details

Counterparty risk transfer for the agent economy: agents post bonds behind their promises, wronged c

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
jdhart81/viridis-agent-fleet
GitHub Stars
0
Server Listing
viridis-agent-fleet

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.6/5 across 10 of 10 tools scored. Lowest: 2.7/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct action or query in the surety bond lifecycle. The descriptions clearly differentiate between posting, pricing, activating, claiming, slashing, releasing, auditing, and querying status. No two tools have overlapping purposes.

Naming Consistency5/5

Tool names consistently follow a verb_noun pattern in snake_case (e.g., post_bond, activate_bond, file_claim). The only slight deviation is bond_status, which is still clear and fits the query pattern. Overall naming is predictable and uniform.

Tool Count5/5

With 10 tools, the set is well-scoped for a surety bond system. Each tool covers a necessary operation without unnecessary duplication. The count feels neither sparse nor overwhelming for the domain.

Completeness4/5

The tool set covers the full lifecycle from posting to release and audit. Notable gaps include the absence of a cancellation or withdrawal tool before activation, and no explicit dispute resolution without arbitration. However, these are minor and the core workflow is complete.

Available Tools

10 tools
activate_bondAInspect

Mark a POSTED bond ACTIVE (idempotent). funding_ref links the payment rail transaction that funded the stake.

ParametersJSON Schema
NameRequiredDescriptionDefault
bond_idYes
funding_refNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior3/5

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

The description notes idempotency, a key behavioral trait, and explains the funding_ref parameter's role. However, with no annotations, it fails to disclose other important behaviors such as side effects, authorization requirements, or error scenarios. More detail would improve transparency.

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 two sentences long, front-loads the core action, and uses no superfluous words. Every sentence provides value, making it highly efficient for quick comprehension.

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

Completeness3/5

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

Given the existence of an output schema, the description is not required to explain return values. However, it omits critical context such as the bond's state machine, preconditions (e.g., bond must be posted), and potential errors. The description is functional but leaves gaps for a complete understanding.

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?

The description adds meaning to funding_ref ('links the payment rail transaction'), compensating for the 0% schema coverage. However, bond_id remains unexplained beyond its presence in the schema. While partial, the added context helps but not fully.

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 action 'Mark a POSTED bond ACTIVE', specifying the verb and the resource. The mention of 'POSTED' distinguishes it from sibling tools like post_bond or release_bond, establishing its specific role in the bond lifecycle.

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 context is implied by describing the target state ('POSTED bond'), but the description does not explicitly state when to use this tool versus alternatives (e.g., post_bond, release_bond). No prerequisites or exclusions are provided, leaving some ambiguity for an AI agent.

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

bond_statusBInspect

Current record for a bond (state, balances, claims, audit head).

ParametersJSON Schema
NameRequiredDescriptionDefault
bond_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior2/5

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

No annotations are provided, so the description carries full burden. It states 'current record' which implies a read operation, but does not disclose side effects, authentication requirements, rate limits, or behavior on missing bonds. More detail is needed for a tool with no annotations.

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 a single concise sentence, front-loaded with the purpose and scope. No unnecessary words or repetition.

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

Completeness3/5

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

Given the presence of an output schema (not shown), the description adequately covers the basic purpose. However, it lacks guidance and behavioral transparency, making it minimally complete for a single-parameter tool with siblings.

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

Parameters2/5

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

Schema description coverage is 0% with one required parameter (bond_id). The description does not explain the parameter beyond implication from context. For a low-coverage schema, the description should add format or example, but it does not.

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 it returns the current record of a bond, including state, balances, claims, and audit head. This specific verb and resource scope distinguishes it from sibling tools like list_bonds (list all) and post_bond (create).

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?

The description implies use for retrieving the current status of a single bond, but lacks explicit guidance on when to use versus alternatives or when not to use it. No exclusions or conditions are provided.

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

describe_agentCInspect

Return capabilities and input contract.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior2/5

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

No annotations exist, so the description must bear the burden. It only states the return type (capabilities/contract) but fails to disclose side effects, read-only status, or safe usage.

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

Conciseness4/5

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

A single sentence with no extraneous information. Efficient, though could be expanded slightly without losing conciseness.

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

Completeness3/5

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

Given no parameters and existence of an output schema, the description is partially complete. However, it lacks detail on the format or content of 'capabilities' and 'input contract,' leaving the agent to infer.

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 coverage is 100% (no parameters), which provides a baseline of 3. The description adds no extra semantics about the zero parameters; it merely restates the tool's output.

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

Purpose3/5

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

The description states the tool returns 'capabilities and input contract,' which is a clear verb but the resource ('agent') is vague. It distinguishes from bond-related siblings but does not clarify what the agent is.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives. Siblings are all bond operations, implying a different domain, but no explicit context is provided.

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

file_claimAInspect

File a claim against an ACTIVE bond. Claims pay out ONLY when an arbitration ruling upholds them (see slash_bond).

ParametersJSON Schema
NameRequiredDescriptionDefault
reasonNo
bond_idYes
claimantYes
amount_minorYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses the key behavioral constraint (payout only after arbitration ruling) and the prerequisite (active bond). It does not mention side effects or permission requirements, which is acceptable for a claim-filing tool.

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 two sentences long, front-loaded with the core purpose, and each sentence adds meaningful information. No wasted words.

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

Completeness3/5

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

Given the output schema exists, return values are covered. However, the description fails to compensate for the 0% schema description coverage on parameters, leaving a significant completeness gap. The tool's complexity is moderate, and the description adequately addresses purpose and constraints.

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

Parameters2/5

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

Schema description coverage is 0%, meaning the parameters have no descriptions. The tool description does not explain any parameter meaning (e.g., format of 'bond_id', what 'claimant' refers to, or units of 'amount_minor'), leaving the agent to infer from parameter names alone, which may be ambiguous.

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 states the specific verb ('File') and resource ('a claim against an ACTIVE bond'), clearly defining the tool's function. It also distinguishes the tool from siblings like 'slash_bond' by noting the arbitration ruling condition.

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?

It provides explicit context: claims only pay out upon arbitration ruling, and the bond must be active. It references 'slash_bond' for more information, offering guidance on when to use this vs. an alternative tool, though it lacks explicit 'when not to use' statements.

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

list_bondsBInspect

List bonds, optionally filtered by state (POSTED|ACTIVE|RELEASED|EXHAUSTED).

ParametersJSON Schema
NameRequiredDescriptionDefault
stateNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
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 states 'list' implying a read operation, but does not disclose pagination, ordering, limits, or any side effects. The description is too minimal for a tool with no annotations.

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 a single sentence that front-loads the main action and the optional filter. No extraneous words; every part is necessary.

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

Completeness3/5

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

With only one optional parameter and an output schema (not shown), the description is somewhat complete but lacks details on default behavior, sorting, scope (e.g., user-specific vs all bonds), and pagination. It does not leverage the existence of an output schema to reduce needed detail.

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 0%, so the description must compensate. It adds the valid state values (POSTED, ACTIVE, RELEASED, EXHAUSTED) which are not in the schema (no enum). However, it does not explain what each state means or any parameter formatting details.

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 tool lists bonds and can be filtered by state, listing the valid values. It uses a specific verb ('List') and resource ('bonds'). However, it does not explicitly differentiate itself from siblings like bond_status, but the purpose is still clear.

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

Usage Guidelines2/5

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

No guidance on when to use this tool vs alternatives (e.g., bond_status for a single bond). There is no mention of prerequisites, context, or when not to use it.

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

post_bondAInspect

Post a surety bond behind an agent's promises. principal is a positive integer in minor units; expires_at is the ISO-8601 coverage window end. The bond fee (2% default) is computed and frozen at post.

ParametersJSON Schema
NameRequiredDescriptionDefault
coverageNo
currencyNoUSD
principalYes
expires_atYes
principal_agentYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior3/5

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

With no annotations, the description partially fulfills behavioral disclosure: it mentions the bond fee (2% default) is computed and frozen at post. However, it does not disclose whether the operation is destructive, reversible, or requires authorization, which are important for a post action.

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 two sentences, front-loaded with purpose, followed by parameter details and fee behavior. Every sentence adds value; no wasted words.

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

Completeness3/5

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

Given 5 parameters, no annotations, and an output schema (so return values may be documented externally), the description explains purpose, two key parameters, and fee behavior. However, it omits explanation of the 'coverage' and 'currency' defaults, what 'principal_agent' is, and any prerequisites (e.g., agent must exist), leaving some gaps.

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 coverage is 0%, so the description must compensate. It explains 'principal' (positive integer in minor units) and 'expires_at' (ISO-8601 coverage window end), adding meaning beyond the schema. But it does not explain 'coverage', 'currency', or 'principal_agent', leaving those ambiguous.

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: 'Post a surety bond behind an agent's promises.' This is a specific verb and resource, distinguishing it from siblings like price_bond or release_bond which involve other bond actions.

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?

The description implies usage by explaining parameter meanings and bond fee computation, but does not explicitly state when to use this tool over alternatives like price_bond or activate_bond, nor does it provide when-not-to-use guidance.

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

price_bondAInspect

Underwrite a surety bond: deterministic actuarial premium quote from a counterparty's track record (attestations, notarized deliveries, completed bonds lower the rate; slashes raise it or decline outright). Integer-only model uw-v1; the returned quote_hash lets any party recompute and verify the quote. Pure — never mutates bond state.

ParametersJSON Schema
NameRequiredDescriptionDefault
slashesNo
attestationsNo
duration_daysYes
slashed_minorNo
coverage_minorYes
bonds_completedNo
successful_deliveriesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior5/5

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

With no annotations, the description fully carries the burden. It explains the deterministic integer-only model, how inputs affect the quote, and that the returned quote_hash enables independent verification. It also explicitly states the tool is pure and never mutates state. No contradictions.

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 two sentences, each serving a distinct purpose: first explains the core action and influencing factors, second adds technical and behavioral context. No fluff, front-loaded, every sentence provides value.

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 7 parameters, 2 required, no annotations, and an output schema, the description covers the model, hash verification, and side-effect guarantee. It lacks discussion of error conditions or edge cases, but for a pricing tool this is sufficient. The output schema likely covers return fields.

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 0%, so the description must compensate. It explains that attestations, deliveries, completed bonds lower the rate, and slashes raise or decline. However, it does not mention all parameters (e.g., coverage_minor, duration_days, slashed_minor) or their roles beyond the stated effects, leaving gaps.

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 uses specific verbs ('Underwrite', 'deterministic actuarial premium quote') and clearly identifies the resource (surety bond). It distinguishes from sibling tools by emphasizing it is a pure pricing function that never mutates bond state.

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 implies when to use this tool (before committing to a bond) by mentioning 'deterministic quote' and 'never mutates bond state', but does not explicitly list alternatives or when not to use it. Context from sibling names like 'post_bond' and 'activate_bond' helps but is not stated.

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

release_bondAInspect

Release the remaining stake to the principal after the coverage window elapses — refused while any claim is still open.

ParametersJSON Schema
NameRequiredDescriptionDefault
bond_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior3/5

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

With no annotations, the description carries full burden. It discloses the refusal condition (open claims blocking release) but omits other behavioral traits such as side effects, permission requirements, or what happens on success. This is adequate but incomplete.

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 a single, front-loaded sentence that efficiently conveys the action, resource, and condition with no wasted words.

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?

Despite having an output schema and sibling tools, the description fails to explain return values, prerequisites (e.g., bond must be active), or state transitions. The tool's context is only partially addressed.

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?

Schema description coverage is 0% and the description adds no meaning to the 'bond_id' parameter beyond the schema's title. The agent has no guidance on what 'bond_id' refers to or its format, making it difficult to invoke correctly.

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 action ('Release the remaining stake'), the resource ('to the principal'), and the condition ('after the coverage window elapses'). It also distinguishes itself from siblings like 'file_claim' by noting it is refused while claims are open.

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 for when to use the tool (after coverage window, no open claims) but does not explicitly compare to alternatives like 'slash_bond' or 'verify_audit', leaving some implicit differentiation.

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

slash_bondAInspect

Execute an arbitration ruling against a claim. Requires the ruling's case id + content hash from agent-arbitration — no ruling, no slash; a given ruling pays at most once. Payout caps at the bond's available balance (over-claims exhaust the bond).

ParametersJSON Schema
NameRequiredDescriptionDefault
upheldNo
bond_idYes
claim_idYes
ruling_hashYes
ruling_case_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior4/5

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

No annotations exist, so the description carries full burden. It discloses that payout caps at bond balance, over-claims exhaust the bond, and rulings are single-use. These are key side effects, though it could mention if the tool is destructive.

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?

Two sentences, front-loaded with purpose, no redundant words. Each sentence provides critical context without being verbose.

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 complexity of arbitration and bonds, the description covers the flow and constraints adequately. It has an output schema (not shown), so return values are not needed. Could mention bond must be active, but not essential.

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 coverage is 0%, so description must compensate. It explains ruling_case_id and ruling_hash as 'ruling's case id + content hash', but does not clarify bond_id, claim_id, or upheld. Only 2 of 5 parameters are meaningfully described.

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 verb 'Execute' and the resource 'arbitration ruling against a claim', distinguishing it from sibling tools like activate_bond or file_claim. It specifies the required inputs (bond_id, claim_id, ruling_case_id, ruling_hash) and constraints.

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?

It explains when to use: after an arbitration ruling, requiring case id and content hash. It also states exclusions ('no ruling, no slash') and idempotency ('a given ruling pays at most once'). However, it does not explicitly mention alternatives among sibling tools.

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

verify_auditCInspect

Validate the tamper-evident audit hash chain for a bond.

ParametersJSON Schema
NameRequiredDescriptionDefault
bond_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior2/5

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

With no annotations, the description must convey behavioral traits. It only says 'validate,' omitting details on side effects, error handling, or what the validation entails (e.g., does it check signatures? Is it read-only?).

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

Conciseness3/5

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

The description is a single sentence and succinct, but it sacrifices completeness for brevity. It front-loads the core purpose but lacks structure or additional details.

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?

Despite having an output schema (unknown content) and only one parameter, the description fails to explain what the tool returns, how to interpret results, or any prerequisites (e.g., bond must exist). The context is inadequate for reliable agent usage.

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

Parameters2/5

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

The only parameter 'bond_id' has no description in the schema (0% coverage), and the description does not clarify its format, role, or constraints. The description adds no meaning beyond the parameter name.

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 action ('validate') and the specific resource ('tamper-evident audit hash chain for a bond'), distinguishing it from sibling tools like activate_bond or bond_status.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. It does not mention preconditions, exclusions, or scenarios where other tools would be more appropriate.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.