Skip to main content
Glama

jev_decide_noul

Verify a yes/no assertion by providing context and a question, returning a calibrated probability from 0.0 to 1.0 for informed decision-making.

Instructions

Calibrated boolean verification (Noul) returning true probability between 0.0 and 1.0.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateYesContext or assertion to verify
questionYesYes/No verification question

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are present, so the description carries the burden of behavioral disclosure. It discloses the output type and that results are 'calibrated,' but it does not explain side effects, interpretation of the probability, or what 'Noul' means. This is adequate for a simple verification tool but not deeply transparent.

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, efficient 14-word sentence with the core behavior front-loaded. No wasted words, though the unexplained 'Noul' is a minor clarity cost.

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 low complexity (2 string params, no output schema), the description covers the output range but omits usage guidance and interpretation of the returned probability, leaving some ambiguity for an agent choosing between sibling decision tools.

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 100%: both 'state' and 'question' have clear descriptions. The tool description adds no parameter-level detail, so the baseline of 3 applies.

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 operation: 'boolean verification' that returns a probability between 0.0 and 1.0. It distinguishes from siblings like jev_decide_choice and jev_decide_score by emphasizing the boolean/probability output, though the term 'Noul' is unexplained.

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 phrase 'boolean verification' and the schema's 'Yes/No verification question' imply use for yes/no checks, but the description does not explicitly state when to prefer this over siblings like jev_decide_choice or jev_decide_score, nor does it mention exclusions.

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