Skip to main content
Glama

Delete Fine-Tuned Model

mistral_delete_model
DestructiveIdempotent

Permanently delete a fine-tuned Mistral model using its model ID to remove it when no longer needed.

Instructions

Delete a fine-tuned model (permanent).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_idYesFine-tuned model ID to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=true, and idempotentHint=true, so the safety profile is covered. The description contributes '(permanent)', which reinforces irreversibility beyond the hint flags, but adds nothing about auth requirements, cascade effects, or error behavior.

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 short sentence with the irreversible nature front-loaded in parentheses. Nothing is wasted and it is immediately scannable.

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?

For a simple one-parameter destructive delete, annotations cover the safety profile and the schema fully documents the parameter. The description is nearly complete; only the lack of any recovery/irreversibility detail and usage context keeps it from a 5.

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?

There is a single parameter with 100% schema description coverage ('Fine-tuned model ID to delete'), so the schema already carries the semantics. The description adds no format, source, or constraint information beyond what the schema provides, making the baseline 3 appropriate.

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?

States a specific verb and resource ('Delete a fine-tuned model'), and the '(permanent)' qualifier sharpens the meaning. It is distinguishable from siblings like mistral_delete_file or mistral_delete_agent by name, but the description itself does no explicit sibling differentiation.

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 on when to use this versus alternatives, nor any prerequisites or caveats. An agent receives no context about how to obtain a valid fine-tuned model ID or when deletion is the appropriate action over simply ignoring the model.

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