Skip to main content
Glama
Tingsum26

sdlc-workflow-mcp

by Tingsum26

workflow_validate_pod_roster

Read-only

Validate a bounded Pod roster against expected revision and membership rules without persisting changes, helping you catch errors before saving.

Instructions

Validate a bounded Pod roster without persisting it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
journeyIdYes
membershipsYes
expectedRevisionYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

readOnlyHint=true is already declared in annotations, and the description's 'without persisting it' largely restates that same guarantee rather than extending it. It says nothing about what the validation actually checks (bounds, role validity, revision conflict), whether failures return errors or a result payload, or whether validation is deterministic. Adds minimal value beyond the annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single efficient sentence with no filler and the non-persistence qualifier front-loaded. But brevity here shades into under-specification: the sentence is short because so much is left unsaid, not because it is dense.

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?

For a tool with a rich nested schema, three required params, no param descriptions, and no output schema, the description should explain validation semantics and especially what expectedRevision implies (optimistic concurrency). It does neither, leaving the agent unable to interpret validation outcomes or revision failures.

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?

Schema description coverage is 0% across three required parameters, including a nested memberships array with eight required subfields each. The description supplies no meaning for journeyId, expectedRevision, or memberships, so it fails to compensate for the coverage gap; only the word 'roster' loosely gestures at memberships.

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?

States a specific verb ('Validate') and resource ('Pod roster') and adds the key qualifier 'without persisting it,' which separates it from a save/import action. It does not name the obvious sibling workflow_import_pod_roster, so the agent must infer the pairing, but the purpose itself is unambiguous. The word 'bounded' is undefined and does little work.

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 'without persisting it' implies a pre-flight/check usage context, from which an agent can infer 'validate before committing'. However, no explicit when-to-use trigger, no prerequisites, and no alternative (workflow_import_pod_roster) is named, so the guidance stays implied rather than stated.

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