The Coresignal MCP Server enables seamless integration of Coresignal's data with AI-powered applications. By connecting to this server, AI assistants can access fresh B2B data about companies, employees, and job postings directly within chat interfaces.
To connect to the remote Coresignal MCP server, you need to have Node.js installed on your system.
Add the Coresignal MCP server to your client by including the following JSON object in your MCP client configuration:
{
"mcpServers": {
"coresignal_data_api": {
"command": "npx",
"args": [
"[email protected]",
"https://mcp.coresignal.com/sse",
"--header",
"apikey:${APIKEY_VALUE}"
],
"env": {
"APIKEY_VALUE": "<api_key>"
}
}
}
}
Make sure to replace <api_key>
with your actual Coresignal API key.
The Coresignal MCP server provides access to the following data entities:
Here's an example of how you can use the Coresignal MCP:
When requesting information about IT companies in Austin, you might receive results like:
The server is accessible via the following endpoint:
https://mcp.coresignal.com/sse
For more detailed API documentation and further information, visit the Coresignal Documentation.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.