Developers & AI Agents
The Honeylead API answers one question in any recruiting niche: which companies are hiring right now? Call it from a script, or drop the MCP server into Claude and just ask.
Every workspace can mint a key. In the app, go to Settings → API, or ask us to mint one for you. Keys look like hl_live_… and are shown once.
Honeylead runs a hosted MCP server — no install, no Python, nothing to download. Add one URL with your key, then just ask: “Use honeylead to find law firms hiring paralegals right now.”
claude mcp add --transport http honeylead \ https://mcp.honeylead.io \ --header "Authorization: Bearer hl_live_your_key"
Add a custom MCP connector with this URL — the key travels in the URL so clients that only accept a URL still work:
https://mcp.honeylead.io?key=hl_live_your_key
One tool is exposed — search_hiring_signals(query, limit) — and it works in any MCP-compatible client (Claude, Cursor, and other LLMs that speak MCP).
Grab honeylead_mcp.py, pip install "mcp[cli]", and point your config at it with HONEYLEAD_API_KEY in the env. The hosted URL above is easier for most people.
POST/v1/api/search — authenticated with your key. Serves company-level signals from Honeylead's owned data (no credit cost per call).
curl -X POST https://honeylead-pipeline-production.up.railway.app/v1/api/search \ -H "Authorization: Bearer hl_live_your_key" \ -H "Content-Type: application/json" \ -d '{"query": "law firms hiring paralegals", "limit": 20}'
{
"ok": true,
"query": "law firms hiring paralegals",
"nicheCount": 38,
"hiringNowCount": 9,
"companies": [
{ "name": "…", "domain": "…", "region": "…",
"hiringSignals": ["jobs", "funding"], "isHiringNow": true }
]
}