Tool reference · Workspace

list_leads

List lead lists and leads

read-onlyreads the workspacenot rate limited

Updated 2026-09-18 · Server 2.0.0

What it does

The lead lists and the leads themselves, so an agent can segment or answer questions about who is in a campaign.

Arguments

None. Send an empty arguments object.

This table is generated from the literal inputSchema that tools/list returns, so what your client sees and what this page says are the same object:

inputSchema
{
  "type": "object",
  "properties": {}
}

Request

Paste this, swap the key, and you have called the tool.

curl
curl -s https://topclozer.com/api/mcp \
  -H "Authorization: Bearer tcz_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "list_leads",
      "arguments": { }
    }
  }'

Returns

{ lists, leads }. lists: id, name, source, status, createdAt. leads: id, listId, fullName, headline, company, linkedinUrl, status, plus optional enrichment fields (location, providerId, recentPost, signal).

The payload arrives inside an MCP content block — one text block whose body is this JSON, pretty-printed. Parse the string; there is no structured-content field.

payload
{
  "lists": [
    { "id": "lst_3c9", "name": "Series-B CTOs (US)", "source": "Sales Navigator", "status": "ready", "createdAt": "2026-08-04" }
  ],
  "leads": [
    {
      "id": "led_88b1",
      "listId": "lst_3c9",
      "fullName": "Dana Whitfield",
      "headline": "CTO",
      "company": "Northbeam",
      "linkedinUrl": "https://www.linkedin.com/in/example",
      "status": "connected",
      "location": "Austin, TX"
    }
  ]
}

Worth knowing

This returns the whole lead set for the workspace in one payload — there is no paging or filter argument yet. On a large workspace that response is big; filter on the client side.

Limits

No request limit. This tool reads the workspace database and costs nothing to serve. The limits that bite in this product are the sending controls — per-sender weekly invite caps, the warm-up ramp, the working-hours window and a randomised gap between actions — and no tool can raise them.

Related tools

All 21 tools are listed on the tool index. Connecting a client is on the Claude setup page, and the protocol details are on the server page.