Skip to main content
Glama
WYRE-AI

MSP360 MCP Server

by WYRE-AI

msp360_stop_plan

Stop an active backup run for a specific plan on a computer by providing the plan ID and computer HID. Use force to stop a stuck run.

Instructions

Stop a currently running backup for a plan on a computer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPlan ID (GUID).
hidYesHID of the computer.
forceNoForce-stop the run.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the basic action but does not mention side effects of stopping a backup, whether the stop is reversible, what happens to the partial backup data, or how the force parameter affects behavior.

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 a single concise sentence that front-loads the action and resource. Every word earns its place, and there is no redundant or vague filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The operation is simple and the schema covers all parameters, but there is no output schema and no annotations. Missing details like expected return value, success/failure indicators, or consequences of force-stopping leave the description adequate but not fully complete.

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

Parameters3/5

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

Schema description coverage is 100%, so the parameters are already documented in the schema. The tool description does not add additional meaning about id, hid, or force beyond what the schema provides, so the baseline of 3 is appropriate.

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 uses a specific verb ('Stop'), a clear resource ('currently running backup for a plan'), and a target object ('on a computer'). It clearly differentiates from the sibling msp360_start_plan without needing to open either schema.

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 phrase 'currently running backup' implies the tool should be used when a backup run is active, but it does not explicitly state when not to use it or mention alternatives. The intended context is inferable rather than explicit.

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