# Dropboard — Pipedream Connect

> The world’s easiest hiring platform.

- API slug: `dropboard` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Human Resources
- Website: https://dropboardhq.com/
- This page (HTML): https://pipedream.com/apps/dropboard
- Tools: 6 actions · 3 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: dropboard`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Client:
const result = await mcp.callTool({
  name: "dropboard-create-client",
  arguments: {
    clientName: "Client Name",
    clientPlanId: "Client Plan ID",
  },
})
```

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

## API proxy

For a Dropboard endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.dropboardhq.com/2024-02/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZHJvcGJvYXJkaHEuY29tLzIwMjQtMDIvbWU?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.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: "dropboard-create-client",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    dropboard: { authProvisionId: "apn_xxxxxxx" },
    clientName: "Client Name",
    clientPlanId: "Client Plan 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)

### `dropboard-create-client` — Create Client (Write)

Creates a new client within Dropboard. Note this is available only for recruiter plan users and may incur additional charges based on your organization's plan. See the documentation

Full schema: https://pipedream.com/apps/dropboard/actions/create-client.md

### `dropboard-create-job` — Create Job (Write)

Creates a new job within Dropboard. See the documentation

Full schema: https://pipedream.com/apps/dropboard/actions/create-job.md

### `dropboard-find-or-create-client` — Find or Create Client (Write)

Looks for a client within Dropboard. If not found, it will create a new one. See the documentation

Full schema: https://pipedream.com/apps/dropboard/actions/find-or-create-client.md

### `dropboard-list-client-id-options` — List Client ID Options (Read-only)

Retrieves available options for the Client ID field.

Full schema: https://pipedream.com/apps/dropboard/actions/list-client-id-options.md

### `dropboard-list-client-plan-id-options` — List Client Plan ID Options (Read-only)

Retrieves available options for the Client Plan ID field.

Full schema: https://pipedream.com/apps/dropboard/actions/list-client-plan-id-options.md

### `dropboard-list-job-id-options` — List Job ID Options (Read-only)

Retrieves available options for the Job ID field.

Full schema: https://pipedream.com/apps/dropboard/actions/list-job-id-options.md

## Triggers (3)

### `dropboard-new-candidate-instant` — New Candidate Profile Created (Instant) (Instant)

Emit new event when a candidate profile is created.

Full schema: https://pipedream.com/apps/dropboard/triggers/new-candidate-instant.md

### `dropboard-new-client-member-instant` — New Client Member (Instant) (Instant)

Emit new event when a member is added to a recruiting client (recruiter plan only).

Full schema: https://pipedream.com/apps/dropboard/triggers/new-client-member-instant.md

### `dropboard-new-job-instant` — New Job Created (Instant) (Instant)

Emit new event when a new job is created.

Full schema: https://pipedream.com/apps/dropboard/triggers/new-job-instant.md

---

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