coresignal_company
Pack: coresignal · Endpoint: https://gateway.pipeworx.io/coresignal/mcp
Look up a company’s firmographics + headcount (size, employee count, industry, founding year, HQ, LinkedIn URL) from Coresignal by company name or website. LinkedIn-adjacent B2B data. Example: coresignal_company({ name: “Stripe”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Company name to look up, e.g. “Stripe”, “OpenAI”. Provide this OR website. |
website | string | no | Company website/domain, e.g. “stripe.com”. Provide this OR name. |
_apiKey | string | yes | Coresignal API key (BYO). Sign up + start a trial at coresignal.com. |
Example call
Arguments
{
"name": "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_company","arguments":{"name":"Stripe","_apiKey":"your-coresignal-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('coresignal_company', {
"name": "Stripe",
"_apiKey": "your-coresignal-api-key"
});
More examples
{
"website": "openai.com",
"_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.