Skip to main content
Glama

Search the Web

search_web
Read-onlyIdempotent

Find relevant web pages when you do not already know their URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query used to find pages by title, URL, and snippet
max_resultsNoMaximum results to return (capped at 25)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, so the description need not repeat safety properties. It adds a useful scoping detail about not requiring known URLs, but it does not disclose result format, pagination, or cap behavior beyond what the schema states.

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?

A single front-loaded sentence conveys the tool's purpose and primary use condition with zero filler. Every word contributes to an agent's ability to decide whether to call this tool.

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?

For a simple two-parameter search tool with rich annotations, the description plus schema is sufficient for selection and invocation. It does not describe the exact return structure, but the schema hints at result fields (title, URL, snippet) and the annotations cover the safety profile.

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 fully documents both query and max_results. The description adds no parameter-level detail, so the baseline score 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 states a specific verb ('find') and resource ('relevant web pages'), and adds the key condition 'when you do not already know their URLs,' which clearly separates it from URL-based siblings like read_page and crawl_site. This is a precise, unambiguous definition.

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?

The condition 'when you do not already know their URLs' gives clear guidance on when to use search instead of direct navigation/reading tools. It does not explicitly name alternatives or exclusions, but the context is sufficient for an agent to route correctly among the listed siblings.

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

Each tool targets a distinct operation: health checking, site mapping, single-page reading, multi-page crawling, and web search. The descriptions cross-reference each other to guide selection, leaving no ambiguity about when to use which tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: check_web_service, crawl_site, map_site, read_page, search_web. The naming style is uniform and predictable.

Tool Count5/5

Five tools is a well-scoped set for a web reading service. Each tool covers a distinct need (discover, search, read, crawl, health check) and none feel redundant or superfluous.

Completeness5/5

The surface covers the full workflow: search to find URLs, map to discover site structure, read for single pages, crawl for bulk retrieval, and health check for service status. There are no obvious dead ends or missing core operations for the stated purpose.

Resources