Skip to main content
Glama

upscaling_status

Check if opm-upscaling binaries are installed, so you can determine whether upscaling simulations are supported before running them.

Instructions

Detect whether the optional opm-upscaling binaries are available.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the burden of signaling behavior. 'Detect whether... available' clearly conveys a read-only status check with no mutation or side effects. It does not detail how detection is performed, but for a zero-parameter probe this is acceptable.

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, focused sentence conveys the entire purpose with no filler. Essential information is front-loaded: it detects availability of an optional dependency.

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 zero-parameter tool with an output schema, the description is complete. An agent can confidently invoke it without further clarification, and the mention of 'optional' provides enough context about why this check matters.

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?

The tool has no parameters and the schema already documents this fully (100% coverage). The description correctly avoids inventing parameter details, and the zero-parameter baseline of 4 applies.

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 clear action ('Detect'), a specific resource ('optional opm-upscaling binaries'), and the exact question being answered ('are available'). This clearly distinguishes it from sibling tools like run_upscaling, which executes upscaling rather than checking its prerequisites.

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 this tool: before running upscaling, to verify the optional binaries exist. However, it does not explicitly state this or mention any alternative tools, so the usage context is left mostly to inference.

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