Skip to main content
Glama
prajithram

IBM MAS Work Order MCP Server

by prajithram

get_crew_workload

Assess crew workload by summarizing open work orders per team, highlighting backlogs to balance assignments.

Instructions

Get a summary of open work orders grouped by crew to assess workload distribution and backlog per team.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
date_toNo
date_fromNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It states the core resource and grouping but does not explain how date_from/date_to affect the results, whether all crews are included, or what the summary return structure looks like. This is minimal disclosure for a retrieval tool.

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 sentence that is concise, front-loaded with the action and resource, and contains no redundant or filler content. Every word contributes to defining the tool's purpose.

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?

With no annotations and no output schema, the description is the only guide for the agent. It lacks parameter meaning, usage comparisons to sibling tools, and return-value detail. For a tool that accepts optional date filters, this is incomplete guidance.

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

Parameters1/5

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

The input schema has two parameters with no descriptions and 0% schema coverage, so the description must compensate by explaining them. The description does not mention date_from or date_to at all, providing no additional meaning about their format, optionality, or filtering behavior. Thus the description adds no value beyond the bare parameter names.

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 states a specific verb ('Get') and resource ('summary of open work orders grouped by crew'), making the tool's function clear. It also includes the intended purpose ('assess workload distribution and backlog per team'), which helps distinguish it from sibling tools like get_open_backlog that do not mention crew grouping.

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 a use case ('to assess workload distribution and backlog per team') but does not explicitly specify when to prefer this over alternatives such as get_open_backlog or get_overdue_work_orders. It offers no exclusions or when-not-to-use guidance, leaving the agent to infer the appropriate context.

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