Skip to main content
Glama
PopBot

Parallels Pro MCP Server

Clone Parallels VM

vm_clone
Destructive

Clone an existing virtual machine to create sandboxes or disposable test environments. Choose a fast linked clone or a full independent clone for complete isolation.

Instructions

Clone an existing VM to quickly spin up sandboxes or disposable test environments.

Args: vm: The source VM name or UUID to clone. name: Name for the newly created clone. linked: If true (default), creates a fast linked clone sharing the base disk. If false, creates a full independent deep clone. dst: Optional custom destination path for the cloned VM.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vmYes
dstNo
nameYes
linkedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
linkedYes
messageYes
source_vmYes
source_uuidYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, covering the mutation aspect. The description adds detail about linked vs full clone (sharing base disk), which is a behavioral nuance. However, it does not disclose potential side effects like requiring the source VM to remain for linked clones or any cleanup implications, leaving some gap beyond annotations.

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?

The description is front-loaded with purpose, then follows a tidy args block. Every sentence adds value: the purpose sentence, and each parameter's role. No fluff; compact and 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?

All parameters are explained, and an output schema exists to cover return details. It lacks explicit notes on prerequisites (e.g., source VM existence, disk space) or error conditions, but these are minor and can be inferred. Given the output schema and annotation coverage, this is nearly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description fully compensates. Each parameter is explicitly explained: vm (source name/UUID), name (clone name), linked (default and its functional difference), dst (optional custom path). This goes well beyond the schema's bare type definitions.

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 the action (clone), the resource (existing VM), and the purpose (sandboxes/disposable test environments). The verb is specific and distinguishes it from sibling tools like vm_start or vm_delete.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit context for when to use: 'to quickly spin up sandboxes or disposable test environments.' Does not mention alternatives, but no sibling does an equivalent operation, so the guidance is adequate. Lacks explicit 'when not to use', but that is acceptable given the niche.

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