Skip to main content
Glama
NicolasET

MCP PageSpeed Insights

by NicolasET

Get Accessibility Issues

get_accessibility_issues

Audit a URL for accessibility issues. Get the accessibility score plus failing checks grouped by impact, affected elements, and remediation guidance.

Instructions

Get accessibility audit results for a URL. Returns the accessibility score and all failing accessibility checks grouped by impact level, with affected elements and remediation guidance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe full URL to analyze (e.g., https://example.com)
strategyNoDevice strategy for the analysismobile

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does disclose the return shape (score, failing checks grouped by impact level, affected elements, remediation guidance), which is genuinely useful given there is no output schema. However it says nothing about permissions, rate limits, or which URL scopes are valid, and the read-only nature is only implied.

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?

Two tightly written sentences with zero waste; the purpose is front-loaded and the return-value detail follows immediately. Nothing needs trimming.

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

Completeness4/5

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

With no output schema, the description usefully summarizes the returned content (impact grouping, affected elements, remediation guidance), and the input schema fully covers both parameters. A mention of auth requirements or a usage precondition would be needed for a 5.

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

Parameters3/5

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

Schema description coverage is 100% (both 'url' and 'strategy' are documented, with an enum for strategy), so the schema already does the heavy lifting. The description adds no syntax, default, or format detail beyond it, making the baseline 3 appropriate.

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 uses a specific verb ('Get') and resource ('accessibility audit results for a URL'), clearly distinguishing it from siblings like get_performance_metrics and get_network_analysis by domain. It does not explicitly name or contrast with a sibling, so it falls short of a full 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 states what the tool does but gives no when-to-use vs when-not guidance, no prerequisites, and does not reference any of the nine sibling analysis tools as alternatives. The agent must infer routing purely from the resource name.

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