Skip to main content
Glama

read

Fetch a web page and return its main content as clean Markdown (headings, links, lists, code preserved; nav/ads/scripts stripped). Also handles plain text, JSON and XML, extracts structured data (format=data), and normalizes any ATS/job-board feed into a unified jobs[] array (format=jobs). Use this whenever you need to read the actual content of a URL. No signup, no API key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute http(s) URL to read, e.g. https://example.com/post
linksNoKeep hyperlinks as [text](url). Default true. Set false for plainer prose.
formatNoOutput format. 'markdown' (default) = clean readable content; 'text' = plain prose, no link markup; 'data' = extract the page's embedded structured data (schema.org JSON-LD, OpenGraph, Twitter card, meta) as JSON; 'jobs' = normalize any ATS/job-board feed (Greenhouse, Lever, Ashby, Workable, SmartRecruiters, Recruitee) or a careers page with JSON-LD JobPosting into a unified jobs[] array (title, url, location, department, employment_type, updated_at, remote) — ideal for job aggregation with no per-provider parsing.
renderNoJS rendering for client-side/SPA pages. 'auto' (default) renders with a headless browser only when the server HTML looks empty; 'js' forces a full browser render; 'off' never renders. The response 'rendered' field says whether a browser was used.
max_charsNoOptional cap on returned characters (content is truncated if longer).

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries full burden. It discloses that nav/ads/scripts are stripped, that JS rendering can occur ('rendered' field indicates), and that content is truncated with max_chars. This gives the agent a clear picture of the tool's behavior and limitations.

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?

Although the description is long, it is front-loaded with the core function, then systematically covers formats and parameters. The detailed explanation of 'format=jobs' earns its place given the tool's complexity. No wasted words or repetition of schema info.

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 moderate complexity (5 params, no output schema), the description covers return formats, behavioral details (rendering, truncation), and special cases (ATS/job-board feeds). It explains enough for an agent to select and invoke correctly without needing additional documentation.

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

Parameters5/5

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

Schema coverage is 100%, so baseline is 3. The description goes well beyond by explaining the 'format' parameter in detail (e.g., 'jobs' normalizes feeds from specific platforms into a unified schema, 'data' extracts structured metadata). This provides actionable meaning beyond the enum labels.

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 uses a specific verb ('Fetch') and resource ('a web page'), and clearly states the main output (clean Markdown). It also enumerates additional supported formats (text, data, jobs), making the tool's purpose unambiguous even with no sibling tools to differentiate from.

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 explicitly says 'Use this whenever you need to read the actual content of a URL,' giving a direct condition for use. It also notes 'No signup, no API key' making adoption easy. However, it does not mention when not to use the tool or suggest alternative approaches, such as when only metadata is needed.

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

With only one tool, there is no possibility of ambiguity or overlap. The tool's purpose is clearly defined and distinct.

Naming Consistency5/5

The single tool is named 'read', a clear and simple verb. There are no other tools to create inconsistency, so the naming is inherently consistent.

Tool Count3/5

A single tool feels minimal, but for a focused web-reading/parsing service it is borderline acceptable. It would be better with a couple more tools (e.g., separate extract/jobs modes), but the count is not extreme.

Completeness5/5

The tool covers a wide range of formats (HTML, text, JSON, XML, jobs) and provides clean Markdown extraction. For its stated purpose, there are no obvious missing operations.

Resources