Skip to main content
Glama

classifier.dev

Find the texts the classifier was unsure about

review_uncertain
Read-onlyIdempotent

Classify up to 1,000 texts and return only the ones whose confidence fell under a threshold (default 0.7), each with its two most likely labels. Use this after a bulk classification to decide which items deserve your own attention: the confident answers can be trusted, these are the ones to read. Returns the index of each item so you can map back to your list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
belowNoReturn items with confidence under this.
inputsYes1 to 1,000 texts to classify. Results come back in the same order.
labelsYes2 to 100 category names. Descriptive names classify better: "urgent bug" beats "p0". Add a label like "none of these" when none-of-the-above is a real outcome.
instructionsNoOptional extra criteria, e.g. "judge only the service, ignore the food".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
belowNo
totalYes
uncertainYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint, covering the safety profile. The description adds valuable behavioral context: threshold default (0.7), returning the two most likely labels, and returning an index for mapping. It also explains the practical meaning of low confidence. This goes beyond annotations without contradicting them.

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?

Three sentences with zero fluff. The core action and return behavior are front-loaded, followed by usage context and mapping detail. Every sentence earns its place, and the structure guides the agent from what it does to why it exists.

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?

Given the tool's moderate complexity (4 parameters, 2 required, output schema present), the description covers all critical aspects: threshold behavior, return contents (two labels, index), and how to interpret results. An agent has everything necessary to call it correctly without additional inference.

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%, so the schema already documents all parameters, defaults, and constraints. The description adds no additional parameter semantics beyond what the schema provides, such as clarifying the 'below' threshold's role or the 'labels' list's purpose. It meets the baseline of 3 for high coverage but does not elevate further.

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 states a specific verb and resource: 'Classify up to 1,000 texts and return only the ones whose confidence fell under a threshold'. It clearly distinguishes from siblings by framing this as a post-hoc review tool after bulk classification, which differentiates it from classify_texts or classify_multi_label. The purpose is unambiguous and actionable.

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 description explicitly gives context: 'Use this after a bulk classification to decide which items deserve your own attention'. It explains why this is useful (confident answers can be trusted) and how it maps back (returns index). It does not list exclusions or alternative tools by name, but the usage niche is clear. Missing explicit 'when not to use' guidance prevents a 5.

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