Skip to main content
Glama
PopBot

Parallels Pro MCP Server

Unshare a host directory from Parallels VM

vm_unshare_folder
Destructive

Unmount and remove a previously shared folder from a Parallels VM by specifying the VM and share name. Stops the VM from accessing the directory.

Instructions

Unmount and remove a previously shared folder from the VM.

Args: vm: The VM name or UUID. name: Name of the share to delete.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vmYes
nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
vmYes
modeYes
nameYes
uuidYes
actionYes
messageYes
host_pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true, and the description adds context by specifying 'previously shared folder' and 'unmount and remove.' It does not disclose side effects or permission requirements, but the destructive nature is covered by 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 extremely concise: one sentence explaining the action, followed by a two-line argument list. Every sentence earns its place, and the primary purpose is front-loaded.

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?

For a simple two-parameter tool with an output schema, the description covers the essentials. It could mention that the share must exist or describe error behavior, but given the annotations and simplicity, it is sufficiently 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%, and the description compensates by explicitly defining both parameters: 'vm: The VM name or UUID' and 'name: Name of the share to delete.' This adds clear meaning beyond the bare 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?

The description clearly states the action: 'Unmount and remove a previously shared folder from the VM.' This specifies a verb, resource, and scope, distinguishing it from vm_share_folder. The title reinforces the purpose.

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?

The description implies usage for removing an existing share but does not explicitly state when to use this over alternatives or any exclusions. It lacks guidance on prerequisites like the share must exist or error handling.

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