Skip to main content
Glama

search-mcp

Fetch Url

fetch_url

Fetch a public http(s) URL and return its main text content as plain text.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe http(s) URL to fetch. Private/loopback hosts are rejected.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It discloses the output format (plain text) and that it extracts 'main text content' rather than the full page. However, it does not mention error behavior, redirects, size limits, or timeout handling. It is not contradictory but lacks depth for a tool with no annotation safety net.

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?

The description is a single, clear sentence that is front-loaded with the action and outcome. It contains no fluff or redundant details. Every word earns its place, and the key constraint ('public') is included without extra verbiage.

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?

This is a simple tool with one parameter and an output schema that defines the return type. The description sufficiently covers what the tool does, the input format, and the output format. For a tool of this complexity, nothing essential is missing – an agent can correctly invoke it with just this description.

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?

The schema description coverage is 100%, and the schema already defines the url parameter including the 'private/loopback hosts are rejected' constraint. The description adds 'public' which is redundant with the schema. No additional parameter semantics are provided beyond what the schema already communicates.

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 ('Fetch'), a specific resource ('a public http(s) URL'), and a clear outcome ('return its main text content as plain text'). It clearly distinguishes from the sibling search_web, which is about searching rather than fetching a known URL.

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

Usage Guidelines3/5

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

The description provides a clear condition: the URL must be public. However, it does not explicitly mention when to use this tool versus the alternative (search_web). An agent can infer that if you have a specific URL, use fetch_url, but the guidance is not explicit. No exclusion criteria or alternative routing is provided.

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.

Resources