ai.explorium/mcp-explorium

Access live company and contact data from Explorium's AgentSource B2B platform.

20MITai-ml

Install

Config snippet generator goes here (5 client tabs)

README

## Explorium Business Data Hub


<p>
  <a href="https://github.com/explorium-ai/mcp-explorium/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT License"></a>
  <img src="https://img.shields.io/badge/Node.js-v24+-green.svg" alt="Node.js Version">
  <img src="https://img.shields.io/badge/MCP-Compatible-blueviolet" alt="MCP Compatible">
  <img src="https://img.shields.io/badge/Claude-Ready-orange" alt="Claude Ready">
  <img src="https://img.shields.io/badge/OpenAI-Compatible-lightgrey" alt="OpenAI Compatible">
  <img src="https://img.shields.io/badge/TypeScript-Powered-blue" alt="TypeScript">
</p>

<img src="logo.png" alt="Explorium Logo" width="90">

**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.

## Overview

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.

### Examples

**Example 1: Partnership Opportunity Research**
```
Who should I contact for partnership with monday.com? Get anyone who can promote a partnership with them. Bring me all the contact details you can find
```

**Example 2: Business Challenge Analysis**
```
What are the business challenges of amazon?
```

**Example 3: Leadership Team Discovery**
```
Get the engineering leadership team at Palo Alto Networks
```

## Installation

<details>
<summary><b>Install in Claude Desktop</b></summary>

#### Remote Server Connection

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`.

#### Local Server Connection

Open Claude Desktop developer settings and edit your `claude_desktop_config.json` file to add the following configuration. See [Claude Desktop MCP docs](https://modelcontextprotocol.io/quickstart/user) for more info.

```json
{
  "mcpServers": {
    "explorium": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
    }
  }
}
```

</details>

<details>
<summary><b>Install in Cursor</b></summary>

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](https://docs.cursor.com/context/model-context-protocol) for more info.

#### Cursor Remote Server Connection

```json
{
  "mcpServers": {
    "explorium": {
      "url": "https://mcp.explorium.ai/mcp"
    }
  }
}
```

#### Cursor Local Server Connection

```json
{
  "mcpServers": {
    "explorium": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
    }
  }
}
```

</details>

<details>
<summary><b>Install in Windsurf</b></summary>

Add this to your Windsurf MCP config file. See [Windsurf MCP docs](https://docs.windsurf.com/windsurf/cascade/mcp) for more info.

#### Windsurf Remote Server Connection

```json
{
  "mcpServers": {
    "explorium": {
      "serverUrl": "https://mcp.explorium.ai/mcp"
    }
  }
}
```

#### Windsurf Local Server Connection

```json
{
  "mcpServers": {
    "explorium": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
    }
  }
}
```

</details>

<details>
<summary><b>Install in VS Code</b></summary>

Add this to your VS Code MCP config file. See [VS Code MCP docs](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) for more info.

#### VS Code Remote Server Connection

```json
"mcp": {
  "servers": {
    "explorium": {
      "type": "http",
      "url": "https://mcp.explorium.ai/mcp"
    }
  }
}
```

#### VS Code Local Server Connection

```json
"mcp": {
  "servers": {
    "explorium": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.explorium.ai/mcp"]
    }
  }
}
```

</details>

<details>
<summary><b>Install in Zed</b></summary>

It can be installed via [Zed Extensi