SalesTouch Docs
All MCP tools
Read onlyExtraction

Scrape result page

scrape_result_page

Read 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.

Required scopes
linkedin:accesssalestouch:use
Execution
Synchronous MCP tool call

Requirements

Provide result_id from a scrape tool.
Reuse the returned cursor to fetch the next page.

Example

Ask your agent

Read the next 20 leads from SalesTouch scrape result scrape_123.

Tool arguments
{
  "result_id": "scrape_123",
  "cursor": "0",
  "limit": 20
}
MCP response envelope
{
  "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_id
string

Stored scrape result id returned by a scrape tool.

cursor
string

Pagination cursor returned by the previous page. Defaults to 0.

limit
number

Maximum 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_scope

Reconnect the MCP and approve the requested LinkedIn permission.

paid_plan_required

Use a SalesTouch workspace with LinkedIn MCP access.

result_not_found

Use a current result_id returned by a scrape tool.

On this page