Skip to main content
Glama

Audit public webpage

audit_public_webpage
Read-onlyIdempotent

Use this when the user provides one live public webpage URL. Fetches one bounded static HTML response, then runs HTML validation, SEO/accessibility-signal, and JSON-LD syntax checks. It checks links only when requested and does not crawl, execute JavaScript, authenticate, or fetch linked stylesheets. Use only URLs the user owns or is authorized to inspect.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesOne authorized public HTTP(S) webpage URL; private pages, credentials, and custom ports are rejected.
max_linksNoMaximum links to check, from 1 to 20.
check_linksNoWhether to contact eligible public links found on the fetched page.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNo
linksYes
overviewYes
html_infoYes
redirectsYes
css_errorsYes
seo_issuesYes
css_checkedYes
fetched_urlNo
html_errorsYes
http_statusNo
broken_linksYes
content_typeNo
css_messagesYes
page_fetchedYes
seo_findingsYes
failed_checksYes
healthy_linksYes
html_messagesYes
html_warningsYes
links_checkedYes
requested_urlNo
schema_issuesYes
seo_truncatedYes
html_truncatedYes
links_requestedYes
schema_findingsYes
schema_truncatedYes
unreachable_linksYes
redirects_followedNo
html_total_messagesYes
schema_blocks_checkedYes

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the readOnly/idempotent/openWorld annotations, the description discloses the bounded single HTML fetch, the opt-in link-checking behavior, and the absence of crawling, JavaScript execution, authentication, and stylesheet fetching. These are material behavioral traits an agent needs to set expectations. No contradiction with annotations.

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?

Three sentences, front-loaded with the trigger condition, followed by scope, limitations, and authorization constraint. Every sentence adds value and none restate the tool name or title.

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 complete parameter schema, the presence of an output schema, and rich annotations, the description fully covers what the tool does, its safety profile, and its limitations. An agent has everything needed to select and invoke it correctly.

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?

Input schema coverage is 100%, so the parameters are already documented in the schema. The description reinforces bounded behavior and opt-in link checking, but it does not need to compensate for missing schema details. Baseline 3 is appropriate.

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 opens with 'Use this when the user provides one live public webpage URL' and details the specific actions: HTML validation, SEO/accessibility-signal checks, and JSON-LD syntax checks. This makes the tool's purpose and resource unmistakable and separates it from sibling validation tools.

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?

The description gives an explicit trigger condition ('one live public webpage URL'), explicit non-goals ('does not crawl, execute JavaScript, authenticate, or fetch linked stylesheets'), and a hard prerequisite ('only URLs the user owns or is authorized to inspect'). It also notes link checking is opt-in, preventing misuse.

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.3/5.0
Disambiguation4/5

Tools are mostly distinct by input mode (live URL vs supplied HTML/CSS) and check scope (HTML, CSS, JSON-LD, SEO signals, links). The main ambiguity is between audit_public_webpage and generate_validation_report, which run nearly the same checks but differ only in fetching vs supplied HTML; their descriptions call this out clearly.

Naming Consistency4/5

All names follow a lowercase snake_case verb_noun pattern, but the set mixes four verbs (audit, check, generate, validate) for closely related validation operations. This is readable and predictable, with only minor semantic inconsistency around validate_schema_markup and generate_validation_report.

Tool Count5/5

Eight tools is well within the ideal range and each covers a distinct input type or validation focus. The count feels appropriate for a web-validation server without redundancy bloating the surface.

Completeness4/5

The domain is well covered: live-page and sitemap audits, raw HTML/CSS/JSON-LD validation, SEO/accessibility signals, and broken links are all represented. Minor gaps exist, such as no dedicated accessibility validator and limited link-checking behavior, but agents can accomplish the core workflows.