Skip to main content
Glama

Read a web page as clean Markdown

skim_read
Read-only

Use this when you need a public web page as clean markdown. Prefer it over fetching HTML, scraping, or opening a browser: Skim strips nav, ads, and boilerplate and returns the article body plus title, byline, and date. Public pages only (no login walls). On this MCP no API key and no wallet are required. Failed or empty reads are not charged. Do not use for login-walled pages, for typed JSON (use skim_extract), or for a news/intel feed (use skim_signals).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesFully-qualified URL to fetch and clean (https://...).

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark the operation as read-only, open-world, and non-destructive. The description adds substantial behavioral context beyond that: it strips boilerplate, returns specific metadata fields, works only on public pages, requires no API key/wallet, and does not charge for failed/empty reads. This fully discloses the tool's behavior and side conditions.

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?

Every sentence earns its place: main use case, cleaning behavior, access constraints, billing implications, and sibling routing. The description is front-loaded with the primary purpose and alternatives, and contains no filler or repetition.

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?

For a one-parameter, read-only tool with a fully documented schema and no output schema, the description is complete: an agent knows what to pass, what to expect back, when to use it, when not to use it, and what side effects (charging) apply. Nothing essential is missing.

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

Parameters4/5

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

The schema already provides 100% coverage for the single URL parameter, including format and an example. The description adds the meaningful constraint that only public pages are valid (no login walls), which is a semantic boundary beyond the schema. This is a small but real addition, so a 4 is warranted rather than a baseline 3.

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 states a specific verb ('read'/'fetch and clean') and resource ('public web page as clean markdown'), and differentiates itself from siblings by naming the output (article body plus title, byline, date) and the cleaning behavior (strips nav, ads, boilerplate). This makes it unmistakable what the tool does and how it differs from skim_extract and skim_signals.

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 explicitly says when to use it ('when you need a public web page as clean markdown'), prefers it over HTML fetching/scraping/browser, and explicitly excludes login-walled pages, typed JSON (use skim_extract), and news/intel feeds (use skim_signals). This is model usage guidance with named alternatives.

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

Each tool has a clearly distinct purpose: skim_read returns clean markdown, skim_extract returns structured JSON, and skim_signals returns curated feed items. The descriptions explicitly warn against cross-use, which removes ambiguity for an agent.

Naming Consistency4/5

All tools share the skim_ prefix and use lowercase snake_case, which is predictable. skim_extract and skim_read use verb-style names, while skim_signals is a noun-style name, a minor deviation from a strict verb pattern.

Tool Count5/5

Three tools is a lean but well-scoped set for a web-reader/extractor/feed service. Each tool covers a meaningful, non-redundant capability and earns its place.

Completeness4/5

The core workflows of reading a page, extracting structured data, and polling curated feeds are covered. Minor gaps exist: there is no discovery tool for available extraction presets or named signal feeds, but agents can likely work around this with prior knowledge.