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 items 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 people or companies, the next cursor, and remaining-result metadata.
Parameters
result_idrequiredstringStored scrape result id returned by a scrape tool.
cursorstringPagination cursor returned by the previous page. Defaults to 0.
limitintegerMaximum stored items to return. Defaults to 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.
trial_payment_method_requiredAdd a payment method in SalesTouch billing to activate the trial and LinkedIn MCP access.
result_not_foundUse a current result_id returned by a scrape tool.