waitForResults: true on research calls.
research_contacts
string[]
IDs from
search_contacts.boolean
When true, blocks until results are ready.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
research_contacts, research_companies, and poll tools.
waitForResults: true on research calls.
| Tool | Description | Risk | Schema |
|---|---|---|---|
research_contacts | Enrich contacts for verified email and phone. Pass searchResultIds or contacts. Set waitForResults: true to auto-poll. | write | #research_contacts |
poll_contact_research | Poll contact research with requestIds from research_contacts. | read | #poll_contact_research |
research_companies | Enrich companies for revenue, size, technologies, etc. | write | #research_companies |
poll_company_research | Poll company research with requestIds from research_companies. | read | #poll_company_research |
search_contacts.{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "research_contacts",
"arguments": {
"searchResultIds": ["abc123"],
"waitForResults": true
}
},
"id": 1
}
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "poll_contact_research",
"arguments": {
"requestIds": ["req-456"]
}
},
"id": 1
}
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "research_companies",
"arguments": {
"searchResultIds": ["co-789"]
}
},
"id": 1
}
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "poll_company_research",
"arguments": {
"requestIds": ["req-101"]
}
},
"id": 1
}
Was this page helpful?