Skip to main content
Glama

Get a model

mistral_get_model
Read-only

Retrieve details for a single model (base or fine-tuned). Management API: GET /v1/models/{model_id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_idYesThe model id, e.g. mistral-large-latest or a fine-tuned model id.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already provide readOnlyHint=true. Description adds endpoint and model scope, but no additional behavioral traits (e.g., rate limits, authentication).

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?

Two sentences, front-loaded with purpose, efficient and no waste.

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?

Simple tool with one parameter and no output schema; description lacks specific return details but is adequate for a basic get operation.

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 coverage is 100% with a clear description of model_id. Description does not add new parameter information beyond schema.

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?

Clearly states verb 'Retrieve details' and resource 'single model', and distinguishes from sibling 'list_models' by specifying single model.

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?

Implied usage from description ('single model') but no explicit when-to-use or alternatives compared to list_models.

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.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool targets a distinct resource and action (e.g., cancel batch job, create agent, delete file, list agents) with no functional overlap. The descriptions clearly differentiate the purposes.

Naming Consistency5/5

All tools follow the consistent 'mistral_verb_noun' pattern, with verbs like cancel, create, delete, get, list. The singular/plural noun usage is standard and predictable.

Tool Count5/5

15 tools is well-scoped for a management API covering agents, batch jobs, files, libraries, and models. It is neither too few nor too many for the apparent domain.

Completeness3/5

The tool set provides basic read and some write operations, but lacks updates for agents and libraries, and does not allow creating batch jobs or libraries. This creates notable gaps for full lifecycle management.