agent-surety
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.
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.
Tool Definition Quality
Average 3.6/5 across 10 of 10 tools scored. Lowest: 2.7/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.
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.
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.
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 toolsactivate_bondAInspect
Mark a POSTED bond ACTIVE (idempotent). funding_ref links the payment rail transaction that funded the stake.
| Name | Required | Description | Default |
|---|---|---|---|
| bond_id | Yes | ||
| funding_ref | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| bond_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| reason | No | ||
| bond_id | Yes | ||
| claimant | Yes | ||
| amount_minor | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| state | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| coverage | No | ||
| currency | No | USD | |
| principal | Yes | ||
| expires_at | Yes | ||
| principal_agent | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| slashes | No | ||
| attestations | No | ||
| duration_days | Yes | ||
| slashed_minor | No | ||
| coverage_minor | Yes | ||
| bonds_completed | No | ||
| successful_deliveries | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| bond_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| upheld | No | ||
| bond_id | Yes | ||
| claim_id | Yes | ||
| ruling_hash | Yes | ||
| ruling_case_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| bond_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
AlicenseAqualityAmaintenanceVerifiable dealings with other agents: prove what you did, vet who you deal with, bind agreements36Apache 2.0
evermint-mcpofficial
Alicense-qualityDmaintenanceTamper-evident receipts for AI agent actions. The notary layer for agent-to-agent transactions.521MIT- MIT
- Alicense-qualityDmaintenanceAI agent commerce platform — 141 tools for payments, escrow, identity, marketplace, and Z3 formal verificationMIT
Your Connectors
Sign in to create a connector for this server.