WdsTraversalAll
Replaces the named job’s TraversalConfig with a root-level plan that follows links subject to optional maxDepth, scrapes page content with the optional conversion, and requests a run while reusing an active run when present
Arguments
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| jobName | string | Yes | None | Unique job name within the tenant. Reuse the same value to manage job config, start crawls, fetch URLs, inspect tasks and Traversal runs, and query indexed data |
| convert | string? | Yes | None | Optional. Conversion applied to scraped values. Use ‘md()’ for Markdown or ‘sr()’ for main readable content using Mozilla Readability. Omitted or null applies no conversion |
| maxDepth | int? | Yes | None | Optional. Maximum URL path depth for discovered links. For example, example.com and example.com/index.html have depth 0, while example.com/path/ has depth 1. Omitted or null applies no depth limit |
The current MCP input schema requires both nullable properties. Pass null for no conversion and/or no maximum depth.
Return Type
Returns TraversalRunResult.
Technical return shape: TraversalRunResult.
Data Contracts
TraversalRunResult
Result returned when starting or attaching to a Traversal run
Fields:
| Name | Type | Description |
|---|---|---|
| RunNum | long | Traversal run number |
| IsNew | bool | True when a new run was started; false when an existing in-progress run was returned |
Behavior
Read-only: no; idempotent: no; destructive: yes; open-world: yes.