list_models
Lists all available LM Studio models and shows whether each is loaded or not.
Instructions
List all available models in LM Studio with their current state (loaded/not-loaded)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Lists all available LM Studio models and shows whether each is loaded or not.
List all available models in LM Studio with their current state (loaded/not-loaded)
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. 'List' strongly implies a safe, read-only operation and it discloses the shape of the returned data (models plus loaded/not-loaded state), which is useful since there is no output schema. However, it says nothing about permissions, ordering, or whether the listing can be filtered/paginated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, front-loaded with the verb and resource, with the one extra clause (current state) earning its place by previewing the return content. No waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read tool with no annotations and no output schema, the description covers purpose, scope, and the essential returned field (load state). It is nearly complete; only the absence of sibling routing guidance keeps it from a 5.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so the schema cannot add meaning and the description has nothing to disambiguate. Baseline of 4 applies for a parameterless tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb (List) and resource (models) and adds scope ('all available') plus the returned attribute (loaded/not-loaded state). It implicitly distinguishes itself from get_model_details by being the bulk listing, but never names the sibling, so it stops short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or when-not-to-use guidance. The 'all available models' phrasing implies this is the enumeration entry point versus the single-model siblings (get_model_details, load_model, unload_model, configure_model), but the agent must infer that routing on its own.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.