pdl_company_enrich

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

Enrich a company from its name or domain using People Data Labs. Returns size, employee count, industry, founding year, location, LinkedIn, and website. Provide a name and/or website. Example: pdl_company_enrich({ website: “peopledatalabs.com”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
namestringnoCompany name, e.g. “People Data Labs”
websitestringnoCompany website or domain, e.g. “peopledatalabs.com”
_apiKeystringyesYour People Data Labs API key (peopledatalabs.com; free tier ~100/mo).

Example call

Arguments

{
  "website": "peopledatalabs.com",
  "_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_company_enrich","arguments":{"website":"peopledatalabs.com","_apiKey":"your-peopledatalabs-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('pdl_company_enrich', {
  "website": "peopledatalabs.com",
  "_apiKey": "your-peopledatalabs-api-key"
});

More examples

{
  "name": "People Data Labs",
  "_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