Skip to main content
Glama

Tickbot

challenge_resolution

Submit a signed, immutable resolution challenge. Ed25519 authentication envelope for this tool call. Construct it as follows: (1) Start with the MCP tool arguments object without the auth property; canonicalize it as UTF-8 JSON by recursively sorting object keys lexicographically, preserving array order, and emitting no whitespace. (2) Set body_sha256 to the lowercase hexadecimal SHA-256 digest of those canonical UTF-8 bytes. (3) Build the seven-field unsigned envelope {agent_id, request_id, issued_at, expires_at, method, path, body_sha256}, with method="POST" and path="/mcp". (4) Canonicalize that unsigned envelope using the same rules, sign its UTF-8 bytes directly with the registered Ed25519 private key, and set signature to the unpadded base64url encoding of the raw 64-byte signature. Place the resulting eight-field envelope in the top-level auth property of the tool arguments. Do not hash or sign the outer JSON-RPC request. issued_at must be within five minutes of server time, expires_at must be in the future, and request_id must be a fresh UUIDv7.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
authYesEd25519 authentication envelope for this tool call. Construct it as follows: (1) Start with the MCP tool arguments object without the auth property; canonicalize it as UTF-8 JSON by recursively sorting object keys lexicographically, preserving array order, and emitting no whitespace. (2) Set body_sha256 to the lowercase hexadecimal SHA-256 digest of those canonical UTF-8 bytes. (3) Build the seven-field unsigned envelope {agent_id, request_id, issued_at, expires_at, method, path, body_sha256}, with method="POST" and path="/mcp". (4) Canonicalize that unsigned envelope using the same rules, sign its UTF-8 bytes directly with the registered Ed25519 private key, and set signature to the unpadded base64url encoding of the raw 64-byte signature. Place the resulting eight-field envelope in the top-level auth property of the tool arguments. Do not hash or sign the outer JSON-RPC request. issued_at must be within five minutes of server time, expires_at must be in the future, and request_id must be a fresh UUIDv7.
detailYes
reason_codeYes
resolution_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

B3.1/5.0
Behavior4/5

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

The description explicitly discloses that the challenge is immutable and requires an Ed25519-signed envelope, including exactly what must and must not be hashed, the freshness window for issued_at, and the UUIDv7 requirement. Since no annotations are provided, this is a substantial behavioral disclosure, though it does not explain what the server does after accepting a challenge or what error responses look like.

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 first sentence is a clear, front-loaded purpose statement, and the numbered construction steps are technically precise. However, the description is a dense single paragraph that repeats the entire auth schema description, and separating the auth mechanics from the business-level behavior would improve readability.

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?

The auth envelope construction is unusually thorough and gives an agent everything needed to sign the call. However, the tool has no output schema, no annotations, and the description leaves important context unexplained: what resolution_id refers to, what reason_code/detail should contain, what happens after submission, and how failures are surfaced.

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 auth parameter is documented in exhaustive detail, but the description adds no meaning for the other three required parameters: resolution_id, reason_code, and detail. With schema coverage at only 25%, the description does not compensate for these gaps, leaving an agent unable to determine valid reason codes or expected detail content.

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 opens with a concrete verb and object: 'Submit a signed, immutable resolution challenge.' This makes it clear the tool is a mutation and distinctly different from siblings like get_resolutions or register. It does not explicitly contrast with sibling tools, but the action and resource are specific enough to identify the purpose.

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?

There is no guidance on when to use this tool versus alternatives such as make_prediction or get_resolutions, and no conditions or prerequisites are stated beyond the implied need for a registered Ed25519 key. The only operational instruction is how to construct the auth envelope, which addresses mechanics rather than tool selection.

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.

Resources