# FinalScout — Pipedream Connect

> Find anyone's professional email address

- API slug: `finalscout` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Artificial Intelligence (AI)
- Website: https://finalscout.com/public/doc/api.html#section/Introduction
- This page (HTML): https://pipedream.com/apps/finalscout
- Tools: 4 actions · 0 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: finalscout`

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

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

const { tools } = await mcp.listTools()

// e.g. run Find Email from LinkedIn:
const result = await mcp.callTool({
  name: "finalscout-find-email-linkedin",
  arguments: {
    url: "LinkedIn Profile URL",
    tags: ["Tags"],
  },
})
```

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: "finalscout-find-email-linkedin",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    finalscout: { authProvisionId: "apn_xxxxxxx" },
    url: "LinkedIn Profile URL",
    tags: ["Tags"],
  },
})
```

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

## Actions (4)

### `finalscout-find-email-linkedin` — Find Email from LinkedIn (Write)

Finds an email address from a LinkedIn profile URL. See the documentation

Full schema: https://pipedream.com/apps/finalscout/actions/find-email-linkedin.md

### `finalscout-find-email-news-article` — Find Email from News Article (Write)

Finds an email address from a news article URL. See the documentation

Full schema: https://pipedream.com/apps/finalscout/actions/find-email-news-article.md

### `finalscout-find-email-professional` — Find Email from Professional (Read-only)

Finds an email address from a person's name and company/domain. See the documentation

Full schema: https://pipedream.com/apps/finalscout/actions/find-email-professional.md

### `finalscout-get-single-task` — Get Single Task (Read-only)

Get the task status for any Single Find task. See the documentation

Full schema: https://pipedream.com/apps/finalscout/actions/get-single-task.md

---

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