Skip to main content
Glama

Axcess — Design Accessibility Evaluation

Evaluate UI Accessibility

evaluate_accessibility
Read-onlyIdempotent

Evaluates UI elements for accessibility issues that automated scanners miss.

COST: $0.01 USDC via x402 on Base-compatible EVM network per call.

Checks beyond what axe/Lighthouse/WAVE catch at the design stage:

  • Touch targets below 24×24px (WCAG 2.5.8 AA hard fail)

  • Touch targets below 44×44px (WCAG 2.5.5 AAA recommended)

  • Information conveyed by color alone without a secondary indicator (WCAG 1.4.1)

  • Missing focus indicators on interactive elements (WCAG 2.4.7)

  • Focus rings thinner than 2px (WCAG 2.4.11)

  • Focus ring contrast below 3:1 against adjacent background (WCAG 2.4.11)

  • Interactive elements below the practical usability height floor

Args:

  • elements: Array of 1–50 UI element objects

  • screen_name: Optional label for the evaluation report

Each element requires: element_type. Provide width_px/height_px for touch target checks. Provide uses_color_only + secondary indicator flags for 1.4.1 checks. Provide is_interactive + focus_visible + focus indicator properties for focus checks.

Returns: Structured report with:

  • Per-element scores (0–100) and specific issues

  • Severity levels (critical/major/minor) with WCAG references

  • What automated tools miss and why

  • Concrete fix recommendations

  • Overall score and verdict (pass/needs_work/fail)

  • Top issues sorted by severity

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
elementsYesArray of UI elements to evaluate
screen_nameNoName of the screen or component being evaluated

TDQS

A4.9/5.0
Behavior5/5

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

Annotations declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds substantial behavioral context beyond annotations: it explicitly notes the cost ($0.01 USDC via x402 on Base-compatible EVM network per call), describes the evaluation criteria (specific WCAG standards), and details the return report structure. This exceeds the baseline for annotation coverage, providing rich context about what happens during the call and what the output includes.

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 well-structured with clear sections: overview, cost disclosure, detailed check list, argument guidance, and return value summary. It front-loads the purpose and cost, then enumerates checks in scannable bullet-like lines. Every sentence serves a purpose, and the formatting (blank lines, line breaks) aids readability without being verbose.

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

Completeness5/5

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

Given the tool has no output schema, the description thoroughly compensates by describing the structured report (per-element scores, severity levels, WCAG references, fix recommendations, overall verdict). It also covers input requirements and example property combinations, making it complete for an agent to invoke correctly. The description is comprehensive despite the absence of an output schema.

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

Parameters4/5

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

Schema description coverage is 100%, so the schema already documents all parameters well. The description adds value by explaining the purpose of each parameter group ('Provide width_px/height_px for touch target checks', 'Provide uses_color_only + secondary indicator flags'), giving practical guidance that the schema alone doesn't convey. It also clarifies the requirements for the elements array items, enhancing semantic understanding.

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 clearly states the tool evaluates UI elements for accessibility issues, with a specific verb and resource. It distinguishes itself from siblings by specifying it catches issues that automated scanners (axe/Lighthouse/WAVE) miss, which separates it from the sibling evaluate_typography and list_capabilities.

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

Usage Guidelines5/5

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

Provides explicit context on what it checks (design-stage issues beyond automated tools) and gives concrete guidance on required versus optional element properties ('Each element requires: element_type. Provide width_px/height_px for touch target checks...'). This makes it clear when to use this tool vs alternatives like typography evaluation, and how to structure input for relevant check categories.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

The three tools have clearly distinct purposes with no overlap. evaluate_accessibility focuses on UI element accessibility, evaluate_typography handles typography-specific evaluation, and list_capabilities provides metadata about available tools. An agent can easily distinguish between them based on their specialized domains.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case formatting: evaluate_accessibility, evaluate_typography, and list_capabilities. This predictable naming convention makes the tool set easy to navigate and understand at a glance.

Tool Count3/5

With only three tools, the set feels somewhat thin for a server focused on 'Design Accessibility Evaluation.' While the two evaluation tools cover distinct aspects, the domain suggests potential gaps in areas like color contrast evaluation or mobile-specific accessibility checks that aren't addressed.

Completeness3/5

The server covers two specific evaluation domains (general UI accessibility and typography) with dedicated tools, but lacks broader coverage expected for design accessibility. Missing are tools for color contrast evaluation, mobile/touch-specific checks beyond touch targets, and integration with design tools beyond the mentioned Figma example. The surface is functional but incomplete for comprehensive design evaluation.

Resources