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
| Name | Type | Required | Description |
|---|---|---|---|
email | string | no | Email address of the person, e.g. “[email protected]” |
phone | string | no | Phone number of the person, e.g. “+14155551234” |
profile | string | no | LinkedIn profile URL, e.g. “https://www.linkedin.com/in/seanthorne” |
name | string | no | Full name of the person, e.g. “Sean Thorne” (best combined with company) |
company | string | no | Company name or domain the person works at, e.g. “People Data Labs” or “peopledatalabs.com” |
min_likelihood | number | no | Minimum match likelihood, integer 1-10. PDL only returns a person if confidence meets this floor. |
_apiKey | string | yes | Your People Data Labs API key (peopledatalabs.com; free tier ~100/mo). |
Example call
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":{}}}'
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.