Skip to main content
Glama

red_team_review

Destructive

Stress-test plans, answers, or documents for hidden risks and failure modes by launching adversarial validation jobs across multiple AI providers.

Instructions

Challenge a plan, answer, or document for risks and failure modes via provider CLIs (starts validation jobs).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelsNoProviders to ask for adversarial review.
selectNoOptional least-cost routing: fill the provider target(s) from the LCR selector instead of the explicit list. 'cheapest' picks the single cheapest eligible provider; 'cheapest_per_tier' picks the cheapest in each quality tier. Requires [least_cost].enabled=true; fails closed (no default-list fallback) when disabled or nothing is eligible.
contentYesPlan, answer, or document to challenge.
riskLevelNoHow aggressively to review.normal

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv3.2.0
  2. Removedv3.0.0
  3. First observedv2.16.0

TDQS

A3.5/5.0
Behavior4/5

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

Annotations already indicate the tool is not read-only, is not idempotent, and is potentially destructive. The description adds useful concrete behavioral detail by stating that it works 'via provider CLIs' and explicitly that it 'starts validation jobs,' which clarifies the side-effect nature beyond the annotations alone.

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?

A single sentence that front-loads the core purpose, names the target resource, and adds a crucial side-effect note in parentheses. Every element earns its place and there is no filler or redundancy.

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 tool is complex: it launches asynchronous validation jobs, has no output schema, and sits among many similar validation/review tools. The description mentions that jobs are started but does not explain what the caller receives, whether a receipt is returned, or how to retrieve job results via sibling tools like job_status or job_result. Params and annotations cover their domains well, but the async workflow is left incomplete.

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 all four parameters are already documented in the input schema. The description adds only marginal semantic context through 'plan, answer, or document' and 'provider CLIs,' but it does not meaningfully expand on parameter meanings beyond the baseline established by the schema.

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 clearly states the verb ('Challenge'), the resource ('a plan, answer, or document'), and the goal ('risks and failure modes'). It also notes that the tool starts validation jobs, which helps distinguish it from pure read-only analysis tools, though it does not explicitly differentiate it from closely named siblings like validate_with_models or second_opinion.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance about when to choose this tool over alternatives such as validate_with_models, second_opinion, or review_changes. The use case is implied by the purpose statement, but no exclusions, prerequisites, or alternative-routing advice is provided, which is a significant gap given the large sibling list.

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