Coresignal MCP
Coresignal MCP is a server that connects Coresignal's data directly with LLM-powered applications and allows AI assistants to tap into Coresignal’s data. By integrating it with Claude, Cursor, and other MCP-compatible AI assistant tools, you can access the latest Multi-source Company API, Multi-source Employee API, and Base Jobs API information directly within chat interfaces.
Prerequisites
To connect to the remote Coresignal MCP server using mcp-remote
you need to have Node.js installed.
Credits for requests performed through the MCP server will also be deducted from the same credit balance.
Integration with AI assistants
Learn integration steps for a few AI assistant tools.
Enter your API Key as the <api_key>
value. Get your key from Coresignal's self-service platform.
Do not forget to refresh the tool after the integration steps.
Claude Desktop
To set up your Clause Desktop assistant, add this entry to your claude_desktop_config.json file:
{
"mcpServers": {
"coresignal_data_api": {
"command": "npx",
"args": [
"[email protected]",
"https://mcp.coresignal.com/sse",
"--header",
"apikey:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "<api_key>"
}
}
}
}
Cursor
Cursor has integrated support for MCP servers:
Go to: Cursor > Settings > Cursor Settings > MCP
Click on the
Add new global MCP server
buttonAdd the following configuration:
{
"mcpServers": {
"coresignal_data_api": {
"command": "npx",
"args": [
"[email protected]",
"https://mcp.coresignal.com/sse",
"--header",
"apikey:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "<api_key>"
}
}
}
}
Available tools
The Coresignal MCP server gives access to several API data entities:
coresignal_company_multisource_api – data from Multi-source Company API
coresignal_employee_multisource_api – data from Multi-source Employee API
coresignal_job_api – data from Base Job API
Usage example
Below is an example of how you can use Coresignal MCP:
[Example request]
Get 5 IT companies in Austin.
[Example answer]
Here are 5 IT companies in Austin, TX: 1. Bazaarvoice - Software Development company with 1,744 employees 2. Upland BA Insight - AI-enablement platform with 39 employees 3. Blue Goji - Health Tech company with 54 employees 4. Bloomfire - Knowledge Management Software with 79 employees 5. Brightpearl by Sage - Software Development company with 135 employees
Last updated
Was this helpful?