get_more_search_results
Retrieve additional search results using pagination with offset-based navigation. Supports reading specific ranges or tail results from active searches to access all available data.
Instructions
Get more results from an active search with offset-based pagination.
Supports partial result reading with:
- 'offset' (start result index, default: 0)
* Positive: Start from result N (0-based indexing)
* Negative: Read last N results from end (tail behavior)
- 'length' (max results to read, default: 100)
* Used with positive offsets for range reading
* Ignored when offset is negative (reads all requested tail results)
Examples:
- offset: 0, length: 100 → First 100 results
- offset: 200, length: 50 → Results 200-249
- offset: -20 → Last 20 results
- offset: -5, length: 10 → Last 5 results (length ignored)
Returns only results in the specified range, along with search status.
Works like read_process_output - call this repeatedly to get progressive
results from a search started with start_search.
This command can be referenced as "DC: ..." or "use Desktop Commander to ..." in your instructions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes | ||
| offset | No | ||
| length | No |
Input Schema (JSON Schema)
{
"properties": {
"length": {
"default": 100,
"type": "number"
},
"offset": {
"default": 0,
"type": "number"
},
"sessionId": {
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}