What it does
Which LinkedIn identity the agent is allowed to act as, and how much room that identity has left today. The tool to call before a search, because every other LinkedIn tool runs through one of these accounts and a paused or checkpointed one will fail.
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:
{
"type": "object",
"properties": {}
}Request
Paste this, swap the key, and you have called the tool.
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_sender_accounts",
"arguments": { }
}
}'Returns
An array of accounts: id, name, status, connected, warmupStage, dailyInviteLimit, dailyInviteSent, dailyMsgLimit, dailyMsgSent, health (score and level).
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.
{
"accounts": [
{
"id": "snd_02",
"name": "Marcus Feld",
"status": "active",
"connected": true,
"warmupStage": 4,
"dailyInviteLimit": 24,
"dailyInviteSent": 11,
"dailyMsgLimit": 40,
"dailyMsgSent": 6,
"health": { "score": 92, "level": "good" }
}
],
"default": "snd_02"
}Worth knowing
Reads the workspace database only — no LinkedIn call, so it does not spend the LinkedIn rate budget. status is active, warming, paused, checkpoint or disconnected; only connected: true accounts can serve a LinkedIn tool call. `default` is the account the LinkedIn tools use when a call omits the account argument: on a multi-seat workspace it is the healthiest connected one, not simply the first, so agent traffic lands on the seat best able to absorb it.
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
search_linkedin_people
Search LinkedIn for people matching an ICP, through a connected sender account
list_campaigns
List all campaigns with performance stats
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.