Skip to main content
Glama
rilfi

token-optimizer-jev-mcp

by rilfi

Yes/no as calibrated P(yes)

jev_noul
Read-onlyIdempotent

Get a calibrated P(yes) probability for a yes/no question. Values near 0.5 indicate an unresolved answer; the probability itself is the answer.

Instructions

Ask Jev a yes/no question and get back P(yes) as a calibrated probability. There is no separate confidence for a noul answer — the probability is the answer, so treat values near 0.5 as unresolved. Read-only: the request has no side effects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rawNoReturn the raw API result (every field, unformatted) instead of the compact answer set.
modelNoModel override, e.g. jev-latest, or a pinned version such as jev-1.13.0.
stateYesThe material to judge: a string, a JSON object, or an array of text values. Jev reads this once and evaluates every question against it in parallel. Non-text inputs (images, audio, binaries) must be converted to text or structured fields first.
answer_nameNoKey this answer appears under in the response. Defaults to "answer".
no_criteriaNoOptional description of what counts as no.
instructionsYesThe question, as a string or structured JSON. Write it as a judgment a knowledgeable person makes in a second, not as a multi-step task.
yes_criteriaNoOptional description of what counts as yes.
include_usageNoInclude token usage. Default true.
include_legendNoInclude the score rubric legend echoed by the API. Off by default: you already sent the rubric.
confidence_thresholdNoAnswers below this confidence come back flagged (needs_review for choice/score, uncertain for noul). Default 0.6, or JEV_CONFIDENCE_THRESHOLD.
include_probabilitiesNoInclude the full probability table per answer. Off by default — it is the largest part of a response.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior5/5

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

The description adds behavioral context beyond the annotations: it explains that 'there is no separate confidence for a noul answer' and that values near 0.5 should be treated as unresolved. It also states the read-only nature explicitly, aligning with readOnlyHint. It mentions parallel evaluation of state, which is useful execution detail. This exceeds the annotation coverage and provides meaningful interpretation guidance.

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 three sentences, front-loaded with the core purpose, then adds the critical interpretation caveat, and finally the read-only note. Every sentence earns its place; there is no filler. It is concise and well-structured.

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?

The description explains the primary return value (P(yes)) and its interpretation, which is the most important aspect for an agent. However, with no output schema and complex options (e.g., raw, include_probabilities, include_usage), the description does not outline the full response structure beyond the probability. The schema parameter descriptions help, but a bit more detail on the default response format would improve completeness. Given the tool's complexity, this is a minor gap.

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 schema already has 100% description coverage for all parameters, so the baseline is 3. The tool description itself does not elaborate on parameters beyond the schema, but it does not need to—the schema covers semantics well. The description's mention of 'calibrated probability' relates to the output, not parameters, so no additional parameter semantics are added.

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 function: 'Ask Jev a yes/no question and get back P(yes) as a calibrated probability.' It also explains the key output interpretation ('the probability is the answer'), which distinguishes it from sibling tools like jev_score or jev_choice. This is a specific verb+resource statement that leaves no ambiguity about what the tool does.

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 when to use it ('Ask Jev a yes/no question') but does not explicitly compare it to siblings or state when NOT to use it. It does not mention alternatives like jev_score (which likely returns a score) or jev_choice (which chooses among options). The context is clear enough for an agent to infer the use case, but explicit exclusions are missing.

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