Skip to main content
Glama

get_model_cache_status

Check which background-removal models are currently loaded and review auto-unload settings, including time until automatic unload.

Instructions

Get current status of the model cache.

Returns information about which models are currently loaded, auto-unload settings, and time until automatic unload.

Returns: Dictionary with cache status including loaded models and timeout info.

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.1.0

TDQS

A3.5/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full behavioral burden. "Get current status" clearly signals a read-only operation, and the description states that it returns information rather than modifying cache state. It does not explicitly say "does not alter the cache," but the wording is sufficiently transparent for a zero-parameter status tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded with the core purpose, but it is redundant: the first paragraph already lists loaded models, auto-unload settings, and timeout info, and the "Returns:" block repeats almost the same content. It could be tightened to a single concise statement.

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?

This is a simple zero-parameter status tool with an output schema available, so the description is largely complete for invoking it correctly. It would be stronger with a brief note about using it before unload_models, but that gap overlaps with usage guidelines and is not critical for execution.

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 zero parametersaine and schema coverage is trivially 100%, so there is no parameter meaning for the description to add. Baseline 4 applies because no parameter documentation is needed.

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?

Description uses a specific verb, "Get", and resource, "status of the model cache", and enumerates what it returns: loaded models, auto-unload settings, and timeout info. It is clearly distinguishable from destructive siblings like unload_models, though it does not explicitly name them.

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?

The description explains what the tool returns but provides no guidance on when to call it versus alternatives such as unload_models or list_background_models. There is no explicit use case, no exclusions, and no mention of related tools.

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