Discover companies, contacts, and business insightsβpowered by dozens of trusted external data sources.
This repository contains the configuration and setup files for connecting to Explorium's Model Context Protocol (MCP) server, enabling AI tools to access comprehensive business intelligence data.
The Explorium Business Data Hub provides AI tools with access to:
- Company Search & Enrichment: Find companies by name, domain, or attributes with detailed firmographics
- Contact Discovery: Locate and enrich professional contact information
- Business Intelligence: Access technology stack, funding history, growth signals, and business events
- Real-Time Data: Up-to-date information from dozens of trusted external data sources
- Workflow Integration: Seamlessly integrate business data into AI-powered workflows
Search any company or professional for everything from emails and phone numbers to roles, growth signals, tech stack, business events, website changes, and more. Find qualified leads, research prospects, identify talent, or craft personalized outreachβall without leaving your AI tool.
Install in Claude Desktop
Open Claude Desktop and navigate to Settings > Connectors > Add Custom Connector. Enter the name as Explorium
and the remote MCP server URL as https://mcp.explorium.ai/mcp
.
Open Claude Desktop developer settings and edit your claude_desktop_config.json
file to add the following configuration. See Claude Desktop MCP docs for more info.
{
"mcpServers": {
"explorium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
}
}
}
Install in Cursor
Go to: Settings
-> Cursor Settings
-> MCP
-> Add new global MCP server
Pasting the following configuration into your Cursor ~/.cursor/mcp.json
file is the recommended approach. You may also install in a specific project by creating .cursor/mcp.json
in your project folder. See Cursor MCP docs for more info.
{
"mcpServers": {
"explorium": {
"url": "https://mcp.explorium.ai/mcp"
}
}
}
{
"mcpServers": {
"explorium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
}
}
}
Install in Windsurf
Add this to your Windsurf MCP config file. See Windsurf MCP docs for more info.
{
"mcpServers": {
"explorium": {
"serverUrl": "https://mcp.explorium.ai/mcp"
}
}
}
{
"mcpServers": {
"explorium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
}
}
}
Install in VS Code
Add this to your VS Code MCP config file. See VS Code MCP docs for more info.
"mcp": {
"servers": {
"explorium": {
"type": "http",
"url": "https://mcp.explorium.ai/mcp"
}
}
}
"mcp": {
"servers": {
"explorium": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
}
}
}
Install in Zed
It can be installed via Zed Extensions or you can add this to your Zed settings.json
. See Zed Context Server docs for more info.
{
"context_servers": {
"Explorium": {
"command": {
"path": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
},
"settings": {}
}
}
}
Install in Cline
You can easily install Explorium through the Cline MCP Server Marketplace by following these instructions:
- Open Cline.
- Click the hamburger menu icon (β°) to enter the MCP Servers section.
- Use the search bar within the Marketplace tab to find Explorium.
- Click the Install button.
Install in Roo Code
Add this to your Roo Code MCP configuration file. See Roo Code MCP docs for more info.
{
"mcpServers": {
"explorium": {
"type": "streamable-http",
"url": "https://mcp.explorium.ai/mcp"
}
}
}
{
"mcpServers": {
"explorium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
}
}
}
Install in Gemini CLI
See Gemini CLI Configuration for details.
- Open the Gemini CLI settings file. The location is
~/.gemini/settings.json
(where~
is your home directory). - Add the following to the
mcpServers
object in yoursettings.json
file:
{
"mcpServers": {
"explorium": {
"httpUrl": "https://mcp.explorium.ai/mcp"
}
}
}
Or, for a local server:
{
"mcpServers": {
"explorium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
}
}
}
If the mcpServers
object does not exist, create it.
Install in JetBrains AI Assistant
See JetBrains AI Assistant Documentation for more details.
- In JetBrains IDEs go to
Settings
->Tools
->AI Assistant
->Model Context Protocol (MCP)
- Click
+ Add
. - Click on
Command
in the top-left corner of the dialog and select the As JSON option from the list - Add this configuration and click
OK
{
"mcpServers": {
"explorium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
}
}
}
- Click
Apply
to save changes. - The same way explorium could be added for JetBrains Junie in
Settings
->Tools
->Junie
->MCP Settings
Install in Kiro
See Kiro Model Context Protocol Documentation for details.
- Navigate
Kiro
>MCP Servers
- Add a new MCP server by clicking the
+ Add
button. - Paste the configuration given below:
{
"mcpServers": {
"Explorium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"],
"env": {},
"disabled": false,
"autoApprove": []
}
}
}
- Click
Save
to apply the changes.
For advanced users or other MCP clients, you can connect using these methods:
You can connect your AI tool to Explorium using the Model Context Protocol (MCP) through several methods:
- URL:
https://mcp.explorium.ai/mcp
- JSON config:
{
"mcpServers": {
"Explorium": {
"url": "https://mcp.explorium.ai/mcp"
}
}
}
- URL:
https://mcp.explorium.ai/sse
- JSON config:
{
"mcpServers": {
"Explorium": {
"url": "https://mcp.explorium.ai/sse"
}
}
}
- JSON config:
{
"mcpServers": {
"explorium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
}
}
}
Important: Different connection methods have different authentication requirements:
- β Claude Desktop Extension - No API key required
- β MCP Remote Connections (Streamable HTTP/SSE/STDIO) - No API key required
- π Docker Self-Hosting - Requires API key
For Docker deployment, you'll need an API access token. Get yours at: https://admin.explorium.ai/api-key
This repository includes Docker configuration for self-hosting:
# Build the Docker image
docker build -t explorium-mcp .
# Run the container with API access token
docker run -e API_ACCESS_TOKEN=your_explorium_access_token explorium-mcp
Required Environment Variables:
API_ACCESS_TOKEN
- Your Explorium API access token for authentication (get it here)
You can also use a .env
file or docker-compose for easier management:
# docker-compose.yml
version: '3.8'
services:
explorium-mcp:
build: .
ports:
- "44280:44280"
environment:
- API_ACCESS_TOKEN=${API_ACCESS_TOKEN}
Once connected, your AI tool will have access to tools for:
- Business Matching: Find companies by name, domain, or business ID
- Business Enrichment: Get detailed firmographics, technographics, and business intelligence
- Business Events: Track funding rounds, office changes, hiring trends, and company developments
- Prospect Discovery: Search for professionals and contacts within companies
- Prospect Enrichment: Access contact information, work history, and professional profiles
- Prospect Events: Track role changes, company moves, and career milestones
If you're experiencing issues connecting your AI tool to Explorium MCP:
-
Check MCP Client Support
Verify that your AI tool supports MCP clients and can connect to MCP servers. Not all AI tools have this capability built-in yet. -
Verify Remote Server Support
Some AI tools have MCP clients but don't support remote connections. If this is the case, you may still be able to connect using our Docker configuration or local server setup. -
Request MCP Support
If your AI tool doesn't support MCP at all, we recommend reaching out to the tool's developers to request MCP server connection support.
This repository contains:
package.json
- Node.js dependencies and scriptsmanifest.json
- Extension metadata and configurationDockerfile
- Container configuration for self-hostingserver/index.js
- Placeholder file (does not contain actual MCP implementation)entrypoint.sh
- Docker container entry point
Important Note: The server/index.js
file in this repository is just a placeholder and does not contain the actual MCP server implementation. To use Explorium MCP, you need to connect to the remote server at https://mcp.explorium.ai/mcp
using mcp-remote
or through the connection methods described above. The actual MCP server is hosted by Explorium and accessible via the remote URLs.
For technical support, contact [email protected].
This project is licensed under the MIT License. See LICENSE for details.