delete_ollama_model
Deletes an Ollama model from a 1Panel server by its numeric ID, freeing storage and cleaning up unused models.
Instructions
Delete Ollama model (XPack)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes |
Deletes an Ollama model from a 1Panel server by its numeric ID, freeing storage and cleaning up unused models.
Delete Ollama model (XPack)
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It identifies a destructive action but says nothing about irreversibility, required permissions, or side effects such as whether the model must be unloaded first.
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?
The description is a single front-loaded phrase with no filler, which is appropriately concise. It is arguably too terse for completeness, but conciseness itself is strong.
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 destructive one-parameter tool with no annotations and no output schema, the description is too thin. It omits the required ids parameter and any operational context needed to invoke it safely.
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 schema has one required parameter ('ids') with 0% description coverage, and the description never mentions it. It adds no format, source, or selection meaning beyond the bare schema.
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 (Delete) and resource (Ollama model), with a parenthetical XPack edition hint. It does not differentiate from close_ollama_model or explain scope, so it is clear but not fully sibling-aware.
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 when-to-use or when-not-to-use guidance is given, and alternatives such as close_ollama_model are not mentioned. The name implies deletion, but explicit usage guidance is absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.