Skip to main content
Glama

scrape_full

Wipes all indexed data, re-fetches the architect.salesforce.com sitemap, and re-scrapes and reindexes every page for initial setup or a clean slate.

Instructions

Full refresh: wipe all indexed data, re-fetch the sitemap from architect.salesforce.com, and re-scrape and reindex every page. Use this for initial setup or when you want a clean slate.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
concurrencyNoNumber of parallel browser tabs (1-5). Default: 3.
language_filterNoLanguage to scrape. 'en' (default, English), 'dk' (Danish), 'de' (German), 'es' (Spanish), 'fi' (Finnish), 'fr' (French), 'it' (Italian), 'jp' (Japanese), 'kr' (Korean), 'no' (Norwegian), 'nl' (Dutch), 'ru' (Russian), 'se' (Swedish), 'pt-br', 'zh-cn', 'zh-tw', 'es-mx', or 'all'.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does disclose the critical destructive trait ('wipe all indexed data') plus the re-fetch/reindex pipeline. It leaves operational details unstated: expected duration, whether the run is blocking, and any auth/permission requirements for a full re-index.

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 tight sentences: the destructive pipeline first, the usage condition second. No filler and everything is front-loaded.

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 two-optional-parameter, no-output-schema tool this covers the essentials, especially the data-destroying nature. The only real gap is that it never signals this is a heavy, long-running job, which an agent deciding between it and an incremental scrape would want to know.

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% and both parameters (concurrency, language_filter) are fully described in the schema, including defaults and the enum values. The description adds nothing about them, so 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?

Names a specific operation ('Full refresh') and enumerates the three concrete steps: wipe indexed data, re-fetch the sitemap from architect.salesforce.com, and re-scrape/reindex every page. The 'full' framing cleanly separates it from the scrape_incremental sibling without needing to name it.

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?

Explicitly states when to use it ('initial setup or when you want a clean slate'), giving a clear triggering context. It does not, however, name scrape_incremental as the alternative for the non-clean-slate case, so the routing is implied via the name contrast rather than stated.

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