pdl_person_enrich

Pack: peopledatalabs · Endpoint: https://gateway.pipeworx.io/peopledatalabs/mcp

Enrich a person from their email / LinkedIn / name+company / phone using People Data Labs. Returns job title, company, emails, phone numbers, location, and skills. Provide at least one identifier. Example: pdl_person_enrich({ email: “[email protected]”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
emailstringnoEmail address of the person, e.g. “[email protected]
phonestringnoPhone number of the person, e.g. “+14155551234”
profilestringnoLinkedIn profile URL, e.g. “https://www.linkedin.com/in/seanthorne
namestringnoFull name of the person, e.g. “Sean Thorne” (best combined with company)
companystringnoCompany name or domain the person works at, e.g. “People Data Labs” or “peopledatalabs.com”
min_likelihoodnumbernoMinimum match likelihood, integer 1-10. PDL only returns a person if confidence meets this floor.
_apiKeystringyesYour People Data Labs API key (peopledatalabs.com; free tier ~100/mo).

Example call

Arguments

{
  "email": "[email protected]",
  "_apiKey": "your-peopledatalabs-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/peopledatalabs/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pdl_person_enrich","arguments":{"email":"[email protected]","_apiKey":"your-peopledatalabs-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('pdl_person_enrich', {
  "email": "[email protected]",
  "_apiKey": "your-peopledatalabs-api-key"
});

More examples

{
  "name": "Sean Thorne",
  "company": "peopledatalabs.com",
  "min_likelihood": 8,
  "_apiKey": "your-peopledatalabs-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "peopledatalabs": {
      "url": "https://gateway.pipeworx.io/peopledatalabs/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026