# Explorium — Pipedream Connect

> B2B Data Foundation for AI Agents & GTM Success

- API slug: `explorium` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Data Analytics
- Website: https://www.explorium.ai
- This page (HTML): https://pipedream.com/apps/explorium
- Tools: 6 actions · 2 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: explorium`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "explorium",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Enrich Business:
const result = await mcp.callTool({
  name: "explorium-enrich-business",
  arguments: {
    type: "Enrichment Type",
    businessId: "Business ID",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "explorium-enrich-business",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    explorium: { authProvisionId: "apn_xxxxxxx" },
    type: "Enrichment Type",
    businessId: "Business ID",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (6)

### `explorium-enrich-business` — Enrich Business (Write)

Enrich business data with comprehensive insights for lead generation, risk assessment, and business intelligence. See the documentation

Full schema: https://pipedream.com/apps/explorium/actions/enrich-business.md

### `explorium-enrich-prospect` — Enrich Prospect (Write)

Enrich prospect records with comprehensive professional and contact information to enhance outreach and engagement strategies. See the documentation

Full schema: https://pipedream.com/apps/explorium/actions/enrich-prospect.md

### `explorium-fetch-businesses` — Fetch Businesses (Read-only)

Fetches business records using filters. See the documentation

Full schema: https://pipedream.com/apps/explorium/actions/fetch-businesses.md

### `explorium-fetch-prospects` — Fetch Prospects (Write)

Fetches prospect records using filters. See the documentation

Full schema: https://pipedream.com/apps/explorium/actions/fetch-prospects.md

### `explorium-match-business-id` — Match Business ID (Write)

Match a businesse to its unique identifier using business name and domain. See the documentation

Full schema: https://pipedream.com/apps/explorium/actions/match-business-id.md

### `explorium-match-prospect-id` — Match Prospect ID (Write)

Match individual prospects to unique identifiers using email addresses. See the documentation

Full schema: https://pipedream.com/apps/explorium/actions/match-prospect-id.md

## Triggers (2)

### `explorium-new-business-event` — New Business Event (Instant) (Instant)

Emit new event when a business update occurs. See the documentation

Full schema: https://pipedream.com/apps/explorium/triggers/new-business-event.md

### `explorium-new-prospect-event` — New Prospect Event (Instant) (Instant)

Emit new event when a prospect update occurs. See the documentation

Full schema: https://pipedream.com/apps/explorium/triggers/new-prospect-event.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
