Skip to main content
Glama
Tingsum26

sdlc-workflow-mcp

by Tingsum26

workflow_record_accessibility_result

Record manual or automated WCAG accessibility check results for a task to track pass, fail, or manual review status.

Instructions

Record a manual or automated WCAG accessibility check result for a task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
taskIdYes
wcagLevelNoAA
evidenceNotesYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden and discloses very little. It implies a write operation but does not state whether recordings are append-only or overwrite prior results, whether FAIL outcomes trigger follow-up actions, what permissions are required, or whether evidenceNotes are mandatory.

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

Conciseness4/5

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

A single well-formed sentence with the action and resource front-loaded and no filler. Efficient, but it is under-specified rather than genuinely concise-with-completeness.

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?

A mutation tool with no annotations, no output schema, and 0% schema coverage on 4 parameters needs substantially more text than one sentence. An agent lacks the information needed to call it correctly, particularly which result values mean what and what evidenceNotes must contain.

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 coverage is 0% across 4 parameters (taskId, result, wcagLevel, evidenceNotes), so the description must compensate and does not. Only the word 'WCAG' loosely gestures at wcagLevel; the PASS/FAIL/MANUAL_REVIEW_REQUIRED enum, the AA default, and the role of evidenceNotes are all left unexplained.

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 ('Record'), resource ('WCAG accessibility check result') and scope ('for a task'), and the WCAG qualifier distinguishes it from lookalike siblings such as workflow_record_manual_e2e and workflow_record_tagging_result. It is clear what the tool does, though it does not explicitly name which sibling it supersedes.

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?

No when-to-use guidance, no prerequisites, and no mention of the closely related recording tools (workflow_record_manual_e2e, workflow_record_tagging_result) an agent must choose between. Usage must be inferred entirely from the name and description.

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