Skip to main content
Glama

Score input

jev_score

Rate text, objects, or arrays on a custom 2–20 level ordered scale. Get a fractional zero-based score, legend, and probabilities for structured decisions.

Instructions

Rate input on an ordered scale of 2–20 levels. Returns a possibly fractional zero-based score, legend and probabilities in answers.result. Use jev_check for yes/no. Requires JEV_AI_API_KEY from https://jev-ai.pro/jev-api. Sends input to Jev AI and consumes account credits; rate limits apply. Returns model, answers and usage. No automatic retries.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateYesText, JSON object or array to evaluate. Sent to Jev AI and its model providers.
levelsYesLevel descriptions ordered from lowest to highest; index starts at zero.
instructionsYesWhat to rate.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A4.7/5.0
Behavior5/5

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

Discloses external service usage (Jev AI), API key requirement, credit consumption, rate limits, and no retries. It also notes the output location (answers.result). This goes well beyond the sparse annotations (readOnlyHint false, etc.) and gives the agent important operational context.

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?

Four sentences, no redundant words. Core purpose is first, then alternative, then requirements and side effects. Every sentence adds new information; no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 3 required params and no output schema, the description provides enough: what it returns (score, legend, probabilities, model, usage), prerequisites (API key), and side effects (credits, rate limits, no retries). An agent can safely invoke it without further documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all parameters at 100%, so baseline is 3. The description adds meaningful details: levels are ordered and zero-based, score is fractional, and state is sent to Jev AI. These clarify how the parameters relate to the tool's behavior beyond the schema.

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 rates input on an ordered 2–20 level scale, which is specific and distinguishes it from the yes/no tool (jev_check). It also gives the return format, so an agent knows exactly what to expect.

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?

It explicitly directs to use jev_check for yes/no, providing one clear alternative. It does not compare against jev_classify, jev_gate, jev_decide, jev_saved_judge, but the purpose (rating on a scale) implicitly differentiates it. Overall it gives clear context but not exhaustive exclusions.

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