Skip to main content
Glama

ViewsMeet Pick + Predict

Cast ballot

cast_ballot

Submit enum-only self and prediction vectors for one issued challenge and nonce. Provenance is server-assigned.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nonceYes
packIdYes
challengeIdYes
packVersionYes
selfChoicesYes
schemaVersionYes
predictionChoicesYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A3.9/5.0
Behavior4/5

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

The description labels the call as a submission (consistent with readOnlyHint=false), ties it to a single issued nonce, and adds that provenance is server-assigned, which tells the agent not to send client identity. It does not detail finality or failure outcomes, but the annotations and output schema cover some of that burden.

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, both information-dense: the first states the action and scope, the second clarifies server provenance. No filler or repetition of schema details.

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 core submit path is clear and an output schema exists, so return values do not need describing. However, with seven required parameters and no property descriptions, the definition does not explicitly point the agent to request_ballot_challenge as the source of the issued challenge/nonce or state that the nonce is single-use, leaving some workflow context implicit.

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?

With 0% schema description coverage, the description carries the burden. It gives semantic meaning to selfChoices/predictionChoices ('enum-only vectors') and to challengeId/nonce ('issued'), but it leaves packId, packVersion, and schemaVersion semantically unexplained beyond their raw schema constraints.

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 states a specific action ('Submit'), a specific resource ('self and prediction vectors'), and a scoping condition ('one issued challenge and nonce'). It is clear enough to distinguish from receipt/read-only sibling tools, though it does not explicitly name sibling submission tools such as submit_personality_perception.

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 phrase 'for one issued challenge and nonce' communicates the key precondition: cast a ballot only after a challenge and nonce have been issued. It gives clear context but stops short of explicitly listing when-not-to-use cases or naming alternative submission tools.

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.

TDQS

A3.8/5.0
Disambiguation4/5

Each tool targets a distinct resource or flow, and the descriptions include strong qualifiers like 'exact opaque code' or 'issued challenge and nonce'. However, cast_ballot, submit_friendship_prediction, and submit_personality_perception all represent submission actions and could be misselected if the agent does not carefully match the exact challenge type.

Naming Consistency5/5

Tool names follow a consistent verb_noun snake_case pattern throughout, dominated by get_ for retrieval and submit_ for submissions, with unique verbs like cast_, create_, request_, and score_ standing out clearly. There are no mixed casing styles or unpredictable naming conventions.

Tool Count5/5

14 tools is well within the ideal range and each tool appears to serve a distinct purpose across five clear subdomains: daily ballots, friendship challenges, personality perception, scoring, and aggregate results. The count feels intentionally scoped rather than bloated or thin.

Completeness4/5

Core lifecycle paths are present for ballots, friendship predictions, personality perception, and result retrieval. Minor gaps exist around explicit creation of private challenges and any update or cancel operations, but those appear intentionally constrained by the server's privacy and immutability model.

Resources