save_image
Saves one or more container images to an archive on the 1Panel server, letting AI clients back up or transfer images by specifying their names.
Instructions
Save image
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| names | Yes |
Saves one or more container images to an archive on the 1Panel server, letting AI clients back up or transfer images by specifying their names.
Save image
| Name | Required | Description | Default |
|---|---|---|---|
| names | 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 behavioral-disclosure burden. "Save" implies a write/mutation, but there is no information about overwrite behavior, permissions, storage location, output, or side effects, so the agent knows almost nothing beyond the bare mutation intent.
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 only two words and is not front-loaded with any useful information. This is under-specification rather than genuine conciseness; it fails to earn its place as a tool description.
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 tool with a required array parameter, no annotations, no output schema, and many image/file-related siblings, the description supplies none of the context needed to invoke it correctly. It is effectively incomplete.
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 single parameter "names" is an array of strings with 0% schema description coverage, and the description adds no explanation of what the names refer to, what format they take, or whether multiple images are saved at once. With a required parameter and no compensating semantics, this is a clear gap.
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?
"Save image" restates the tool name with no additional scope, target system, or distinguishing detail. An agent cannot tell from this whether it saves a Docker image, a website screenshot, or a file, nor how it differs from siblings like save_file, load_image, or commit_container.
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?
The description gives no when-to-use conditions, prerequisites, or alternatives. It does not mention sibling tools such as load_image, save_file, or list_images, leaving the agent to infer context entirely.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.