Skip to main content
Glama

Screenshotline

Server Details

Screenshot any web page, or read it as clean Markdown, with consent banners, ads and popups removed.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.2/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct outputs (clean Markdown text vs. a visual image), and the descriptions explicitly cross-reference each other to guide selection based on whether text or layout matters. No overlap or ambiguity remains.

Naming Consistency4/5

Both names are lowercase snake_case, which is consistent. However, read_page follows a verb_noun pattern while screenshot is a bare noun/verb, a minor stylistic deviation.

Tool Count3/5

Two tools is thin, but the server has a narrow rendering purpose and each tool covers a distinct output format. It is borderline minimal rather than clearly well-scoped.

Completeness3/5

The core dual capability (text and image) is present, but there are no options for viewport size, full-page capture, wait/scroll behavior, or timeouts, which are common needs for a rendering server and limit agent control.

Available Tools

2 tools
read_pageAInspect

Render a web page and return its content as clean Markdown. The page is fully rendered first - JavaScript executed, consent banners dismissed, lazy images loaded - so this works on sites that return nothing useful to a plain HTTP fetch. Prefer this over screenshot when you need to read or reason about the text.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe page to read. Must be http or https.
max_charsNoTruncate the Markdown to this many characters. 0 or omitted means no limit.
block_chatsNoRemove live-chat widgets. Default true.
block_popupsNoRemove newsletter and donation interstitials. Default true.
strip_chromeNoDrop navigation, headers, footers and sidebars, keeping the main content. Default true. Set false for a full transcript of the page.
block_cookie_bannersNoRemove consent banners. Default true.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden, and it does disclose meaningful behavior: full rendering with JavaScript execution, lazy-image loading, and automatic consent-banner dismissal. It omits auth/rate-limit or failure behavior and never explicitly states it is a side-effect-free read, so it falls just short of full disclosure.

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, each earning its place: what it does, why the rendering matters, and when to prefer it over the sibling. The primary purpose and the capability differentiator are front-loaded.

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?

No output schema, so the description correctly states the return type (clean Markdown), and all six parameters are covered by the schema. It is nearly complete but says nothing about output size limits, pagination, or error cases for an unfetchable page.

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%, so the schema already documents all six parameters, setting the baseline at 3. The description reinforces the default-on cleanup behavior (consent banners) but adds no syntax, format, or default nuance beyond the schema itself.

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?

Specific verb+resource ("Render a web page") plus the output form ("clean Markdown"). It also differentiates from the sibling screenshot by describing the text-oriented use case, so an agent can pick between them without opening either schema.

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?

Explicitly names the alternative (screenshot) and the condition that selects this tool: "Prefer this over screenshot when you need to read or reason about the text." It also gives a context trigger for use — JS-heavy sites that return nothing to a plain HTTP fetch.

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

screenshotAInspect

Capture a screenshot of a web page and return it as an image. Handles consent banners, ads, lazy-loaded images and late-rendering SPAs. Use this when the layout, styling or visual appearance is what matters; use read_page when you only need the text.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe page to capture. Must be http or https.
formatNoDefault png.
selectorNoCapture only the element matching this CSS selector.
block_adsNoBlock ad networks and collapse the empty slots. Default true.
full_pageNoCapture the entire scrollable page rather than just the viewport.
block_chatsNoRemove live-chat widgets. Default true.
block_popupsNoRemove newsletter and donation interstitials. Default true.
color_schemeNoRender the page in light or dark mode.
viewport_widthNoViewport width in pixels. Default 1280.
viewport_heightNoViewport height in pixels. Default 800.
block_cookie_bannersNoRemove consent banners. Default true.

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full behavioral burden, and it does disclose meaningful pipeline behavior: consent banners, ads, lazy-loaded images and late-rendering SPAs are handled. It stops short of noting latency implications of late-rendering SPAs or any failure/timeout behavior, so it falls just short of full disclosure.

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 sentences, both front-loaded: the capability first, then the routing rule against the sibling. No redundancy and every clause carries information.

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 correctly states the return type ("return it as an image"), and the 11-parameter surface is fully covered by the schema. Minor gap: no note on whether auth or a reachable URL is required, though for a public-page capture tool this is a small omission.

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% across all 11 parameters (defaults, enums, and per-parameter meaning are already documented). The description adds no parameter-level detail beyond what the schema states, so the baseline of 3 is correct.

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 ("Capture a screenshot of a web page") and immediately distinguishes itself from the sibling read_page by naming the visual-vs-text dimension. An agent can pick between the two without opening either schema.

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?

Explicit when-to-use rule ("when the layout, styling or visual appearance is what matters") paired with the named alternative and its selecting condition ("use read_page when you only need the text"). Nothing is left to inference.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updates
    • First observedread_page
    • First observedscreenshot

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Scrapes webpages and converts them to markdown using AI-powered interaction to automatically handle cookie banners, CAPTCHAs, paywalls, and other blocking elements before extracting clean content.
    12
    48
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Converts any webpage into clean, LLM-ready Markdown, removing noise and supporting JavaScript rendering.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables AI agents to read web pages reliably, returning clean markdown content, hyperlinks, and metadata without navigation or ad noise.
    3
    7
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources