Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

subway_sitemap

Enumerate Subway store locations worldwide by paging through their sitemap index. Returns URLs, locator paths, and directory depth for each entry, allowing complete walk of all store pages.

Instructions

Browse Subway's global store-URL index. Returns one page of Subway's sitemap-declared store index -- 22,700+ URLs across 2 shards at time of writing, covering a country/region/city/street tree worldwide. This is the cheapest way to enumerate Subway locations, and it is the entry point Subway's own robots.txt declares. Each entry carries its URL, the locator path GET /subway/store takes, and a depth: the deepest entries are store pages, shallower ones are country, region and city directory pages listed in the same sitemap. A page past the end returns an empty list rather than an error, so a caller can walk to exhaustion.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page within the shard (default 1)
shardNoSitemap shard index (default 0). shard_count in the response says how many exist.
page_sizeNoEntries per page, 1-500 (default 100)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden, and it does well: it discloses pagination behavior (one page at a time), the shard structure (2 shards), the depth semantics of entries, and the end-of-pagination behavior (empty list, not error). It doesn't mention rate limits or whether the underlying sitemap is cached, but for a read-only enumeration tool the disclosed behavior is substantial.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but well-organized: it opens with the core purpose, then covers scale, entry semantics, and pagination behavior. Every sentence adds information, though the middle sentence about the country/region/city/street tree is slightly verbose. It earns a 4, not a 5, because it could be tightened without losing meaning.

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 paginated enumeration tool with no output schema, the description covers the essential operational details: what is returned, how pagination works, how to detect the end, and how shards work. It doesn't describe the exact response shape, but the description's mention of 'URL, locator path, and depth' gives enough for an agent to use the tool. A 4 is fair given the absence of an output schema.

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%, so the schema already documents page, shard, and page_size. The description adds context by explaining shard_count appears in the response and that page is 1-based, but it doesn't add much beyond the schema. Baseline 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 ('Browse'), a precise resource (Subway's global store-URL index / sitemap-declared store index), and distinguishes it from sibling tools like subway_store and subway_nearby by framing it as the sitemap enumeration entry point. It also explains what each entry carries (URL, locator path, depth), so an agent can tell exactly what this tool returns.

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 this is 'the cheapest way to enumerate Subway locations' and 'the entry point Subway's own robots.txt declares,' which tells an agent when to prefer it over store-level or nearby tools. It also gives operational guidance: walk pages to exhaustion, and a page past the end returns an empty list rather than an error.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools