Skip to main content
Glama

Map Site URLs

map_site
Read-onlyIdempotent

List a site's URLs so an agent can select pages before reading them.

Prefer this inexpensive discovery step before crawl_site. Map first, then call read_page for selected URLs unless content from many pages is required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute HTTP(S) site URL whose available URLs should be listed
limitNoMaximum URLs to list (capped at 500)

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the description's safety burden is low. It adds valuable context by labeling the operation as 'inexpensive' and framing it as a discovery step, which helps agents anticipate performance and purpose. However, it doesn't disclose potential rate limits or response format specifics, though annotations cover the main safety profile.

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 with zero filler. The first sentence immediately states the operation and purpose, and the second delivers the workflow guidance. Every word earns its place, and the most critical information (purpose and usage) is front-loaded.

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 2-parameter tool with clear annotations and no output schema, the description fully covers what an agent needs: what it does, when to use it (before crawl_site, before read_page), and why it's preferable (inexpensive). The implied output (a list of URLs) is sufficient for this simple discovery tool, and the workflow guidance makes it self-contained.

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%, with both 'url' and 'limit' clearly described in the schema (absolute URL, max 500 cap). The description adds no additional parameter-level meaning beyond the schema, so the baseline of 3 is appropriate; it doesn't need to compensate for schema gaps.

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 clearly states the action ('List a site's URLs') with a specific resource and purpose ('so an agent can select pages before reading them'). It explicitly differentiates from siblings by naming crawl_site as the heavier alternative and read_page for after mapping, making the tool's role unambiguous.

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?

Provides explicit when-to-use guidance: 'Prefer this inexpensive discovery step before crawl_site. Map first, then call read_page for selected URLs unless content from many pages is required.' This states the recommended workflow and explicitly contrasts with crawl_site (for many pages) and read_page (for selected URLs), leaving no ambiguity about decision-making.

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