Skip to main content
Glama

render-mcp

page_diagnostics

Load a page in a real browser and report what went wrong: JavaScript console errors and warnings, network requests that failed, and the HTTP status of the page itself. Use this when a site looks broken, a deployment might have shipped a bug, or a page loads blank and you need to know why. An agent cannot see a browser's console any other way.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe absolute URL to load, including https://
widthNoViewport width in pixels. 320-2560. Defaults to 1280.
heightNoViewport height in pixels. 240-2000. Defaults to 800.
include_warningsNoInclude console warnings and info messages, not just errors. Defaults to false.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations present, the description carries the full behavioral burden and mostly succeeds: it discloses that this uses a real browser and states exactly what diagnostics are captured. Minor gaps remain, such as not clarifying that warnings are only reported when include_warnings is true, and not mentioning potential timeouts or side effects of loading a live page.

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: the behavior is front-loaded, usage guidance follows, and the unique value closes. There is no filler, no repetition of schema details, and every sentence justifies its place.

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?

The report contents are enumerated (console, network, HTTP status) even though there is no output schema, and the trigger conditions are clear. It does not describe the exact output format or failure behavior, but for a diagnostic tool the description is sufficient for an agent to decide when to call it and what to expect.

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 coverage is 100%, so the schema already documents url, width, height, and include_warnings with defaults and constraints. The tool description does not add parameter-level detail, but with full schema coverage the baseline 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?

The description names a specific verb and resource: 'Load a page in a real browser and report what went wrong,' followed by concrete outputs: JS console errors/warnings, failed network requests, and page HTTP status. This differentiates it from siblings like screenshot_url and rendered_html, which focus on visual or DOM output rather than browser diagnostics.

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?

It gives explicit trigger scenarios: 'when a site looks broken, a deployment might have shipped a bug, or a page loads blank.' It also states why the tool is uniquely necessary: 'An agent cannot see a browser's console any other way.' It does not explicitly name alternative tools or exclusion cases, so it stops short of a 5.

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.