Scrape result page
scrape_result_pageRead one stored scrape result page without loading the full export into context.
When to use it
Read a stored extraction in small pages without loading the entire dataset into the agent context.
linkedin:accesssalestouch:useRequirements
Example
Read the next 20 leads from SalesTouch scrape result scrape_123.
{
"result_id": "scrape_123",
"cursor": "0",
"limit": 20
}{
"content": [
{
"type": "text",
"text": "{\n \"data\": { ... },\n \"meta\": null\n}"
}
],
"isError": false
}Expected: A page of extracted leads, the next cursor, and remaining-result metadata.
Parameters
result_idstringStored scrape result id returned by a scrape tool.
cursorstringPagination cursor returned by the previous page. Defaults to 0.
limitnumberMaximum leads to return. Defaults to 20, max 20.
Aliases are shown independently because MCP clients send a flat JSON object. Use one alias from each required group, not every alias.
Common errors
insufficient_scopeReconnect the MCP and approve the requested LinkedIn permission.
paid_plan_requiredUse a SalesTouch workspace with LinkedIn MCP access.
result_not_foundUse a current result_id returned by a scrape tool.