coresignal_employee

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

Find a person’s professional profile by name (+company) via Coresignal — returns title, current company, location, LinkedIn URL, work experience and education. LinkedIn-adjacent people data. Example: coresignal_employee({ name: “Patrick Collison”, company: “Stripe”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
namestringyesFull name of the person, e.g. “Patrick Collison”.
companystringnoOptional company name to disambiguate, e.g. “Stripe”.
_apiKeystringyesCoresignal API key (BYO). Sign up + start a trial at coresignal.com.

Example call

Arguments

{
  "name": "Patrick Collison",
  "company": "Stripe",
  "_apiKey": "your-coresignal-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/coresignal/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"coresignal_employee","arguments":{"name":"Patrick Collison","company":"Stripe","_apiKey":"your-coresignal-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('coresignal_employee', {
  "name": "Patrick Collison",
  "company": "Stripe",
  "_apiKey": "your-coresignal-api-key"
});

More examples

{
  "name": "Sam Altman",
  "_apiKey": "your-coresignal-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026