# PredictLeads — Pipedream Connect

> Company Intelligence Data

- API slug: `predictleads` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Data Analytics
- Website: https://predictleads.com/
- This page (HTML): https://pipedream.com/apps/predictleads
- Tools: 5 actions · 4 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: predictleads`

```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": "predictleads",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run Get Technologies:
const result = await mcp.callTool({
  name: "predictleads-get-technologies",
  arguments: {},
})
```

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: "predictleads-get-technologies",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    predictleads: { authProvisionId: "apn_xxxxxxx" },
  },
})
```

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

## Actions (5)

### `predictleads-get-technologies` — Get Technologies (Read-only)

Retrieve a list of technologies that PredictLeads tracks. See the documentation

Full schema: https://pipedream.com/apps/predictleads/actions/get-technologies.md

### `predictleads-list-technology-id-options` — List Technology Options (Read-only)

Retrieves available options for the Technology field.

Full schema: https://pipedream.com/apps/predictleads/actions/list-technology-id-options.md

### `predictleads-lookup-company` — Lookup Company By Domain (Read-only)

Lookup a company by their domain. See the documentation

Full schema: https://pipedream.com/apps/predictleads/actions/lookup-company.md

### `predictleads-retrieve-companies-by-technology` — Retrieve Companies By Technology (Read-only)

Retrieve companies that use a specific technology. See the documentation

Full schema: https://pipedream.com/apps/predictleads/actions/retrieve-companies-by-technology.md

### `predictleads-retrieve-news-events-by-domain` — Retrieve News Events By Domain (Read-only)

Retrieve news events for a company by domain. See the documentation

Full schema: https://pipedream.com/apps/predictleads/actions/retrieve-news-events-by-domain.md

## Triggers (4)

### `predictleads-new-financing-event` — New Financing Event Added (Polling)

Emit new event for each new financing event. See the documentation

Full schema: https://pipedream.com/apps/predictleads/triggers/new-financing-event.md

### `predictleads-new-job-opening` — New Job Opening Added (Polling)

Emit new event for each new job opening for a specific company. See the documentation

Full schema: https://pipedream.com/apps/predictleads/triggers/new-job-opening.md

### `predictleads-new-news-event` — New News Event Added (Polling)

Emit new event for each new news event for a specific company. See the documentation

Full schema: https://pipedream.com/apps/predictleads/triggers/new-news-event.md

### `predictleads-new-technology-detected` — New Technology Detected (Polling)

Emit new event for each new technology detected for a specific company. See the documentation

Full schema: https://pipedream.com/apps/predictleads/triggers/new-technology-detected.md

---

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