Skip to main content
Glama
WYRE-AI

WatchGuard Cloud MCP Server

by WYRE-AI

watchguardcloud_get_activation_status

Retrieve per-line-item activation status for a batch using its batch ID. Check whether each item in the batch activated successfully.

Instructions

Get per-line-item status for an activation batch by batch ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
sortByNo
batchIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3/5.0
Behavior3/5

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

With no annotations provided, the description must carry the behavioral burden. 'Get' makes the read-only nature clear, and 'per-line-item status' hints at the response granularity. However, it does not disclose pagination behavior implied by limit/offset, response structure, authentication requirements, or error handling.

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, with no redundant or vague wording. It is appropriately sized for what appears to be a straightforward status lookup tool.

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

Completeness2/5

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

There is no output schema and no annotation context, so the description should at least clarify return semantics and pagination. It mentions 'per-line-item status' but does not explain what line items are, how results are returned or paged, or how the optional sortBy parameter behaves, leaving an agent with insufficient detail for robust invocation.

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

Parameters2/5

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

The input schema has 0% description coverage, so the description needed to compensate for all four parameters. It only adds meaning to batchId as the lookup key; limit, offset, and sortBy are left entirely unexplained, leaving most parameters semantically opaque.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the operation as retrieving per-line-item status for an activation batch using a batch ID, which distinguishes it in resource and action from sibling creation/list tools. However, it does not explicitly contrast itself with similar sibling tools like get_operator_transaction_status, so it falls just short of a 5.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as list_recent_activations or get_operator_transaction_status. It only implies that a batchId is needed, but offers no context about how to obtain it or when not to use this endpoint.

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