# Dux Soup — Pipedream Connect

> Find, attract and engage with your prospects on LinkedIn. Scale your business with free marketing automation.

- API slug: `dux_soup` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Marketing
- Website: https://www.dux-soup.com/
- This page (HTML): https://pipedream.com/apps/dux-soup
- Tools: 3 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: dux_soup`

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

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

const { tools } = await mcp.listTools()

// e.g. run Connect Profile:
const result = await mcp.callTool({
  name: "dux_soup-connect-profile",
  arguments: {
    targetProfileUrl: "Target Profile URL",
  },
})
```

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: "dux_soup-connect-profile",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    dux_soup: { authProvisionId: "apn_xxxxxxx" },
    targetProfileUrl: "Target Profile URL",
  },
})
```

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

## Actions (3)

### `dux_soup-connect-profile` — Connect Profile (Write)

Queues a connection request to actively connect with a targeted LinkedIn profile. See the documentation

Full schema: https://pipedream.com/apps/dux-soup/actions/connect-profile.md

### `dux_soup-message-profile` — Message Profile (Write)

Queues a direct message that will be sent to the targeted profile. See the documentation

Full schema: https://pipedream.com/apps/dux-soup/actions/message-profile.md

### `dux_soup-save-profile-lead` — Save Profile as Lead (Write)

Queues a profile save action to store the targeted profile as a lead. See the documentation

Full schema: https://pipedream.com/apps/dux-soup/actions/save-profile-lead.md

---

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