Skip to main content
Glama

render-mcp

rendered_html

Fetch a page's HTML after JavaScript has executed. Use this when a plain HTTP fetch returns an empty shell or a loading spinner — single-page apps, sites that build their content client-side, or anything behind a framework. Returns the final DOM as HTML text.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe absolute URL to load, including https://
wait_forNoOptional CSS selector to wait for before capturing, for pages that load content late.
max_charsNoTruncate the returned HTML to this many characters. Defaults to 100000.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of disclosure. It clearly explains that the tool runs JavaScript and returns the final DOM as HTML text, which is important behavioral context. It does not mention timeouts, failure modes, or resource cost, but the core behavior is transparent.

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 well-structured sentences with no wasted words. The key differentiator, JavaScript execution and final DOM, is front-loaded, followed by concrete use cases and return type.

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?

For a simple three-parameter tool with no annotations and no output schema, the description gives enough context about when to use it and what it returns. It could mention limitations or failure behavior, but an agent can correctly select and invoke the tool based on the information provided.

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%, and each parameter already has a useful description in the schema. The main description does not add parameter-level details, so the baseline score of 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?

States a specific verb and resource: fetch a page's HTML after JavaScript has executed. The emphasis on executing JS and returning the final DOM clearly distinguishes it from the sibling tools screenshot_url and url_to_pdf, which produce visual or PDF output rather than HTML text.

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

Usage Guidelines4/5

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

Provides explicit usage context: use when a plain HTTP fetch returns an empty shell or loading spinner, especially for single-page apps or client-side rendered sites. It does not explicitly mention when not to use it or name the sibling tools, but the conditions are clear enough.

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.2/5.0
Disambiguation5/5

Each tool targets a distinct output or purpose: audit, diagnostics, rendered HTML, screenshot, and PDF. Even the two diagnostic tools are clearly separated by what they check, so an agent is unlikely to confuse them.

Naming Consistency4/5

All names use snake_case and are descriptive, but they do not follow a single regular pattern: most are noun phrases, while url_to_pdf uses a different structure. The inconsistency is minor and does not hurt readability.

Tool Count5/5

Five tools cover the core browser-rendering use cases without redundancy or bloat. Each tool earns its place in the set.

Completeness5/5

The set covers the obvious needs of a render-focused server: accessibility checking, failure diagnostics, post-JavaScript HTML, visual capture, and PDF output. There are no glaring dead ends for typical page-inspection workflows.