# Clockwork Recruiting — Pipedream Connect

> Executive search software and business solutions for executive search firms, in-house teams and venture capital.

- API slug: `clockwork_recruiting` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Business Management
- Website: https://www.clockworkrecruiting.com/
- This page (HTML): https://pipedream.com/apps/clockwork-recruiting
- Tools: 12 actions · 1 trigger

## 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: clockwork_recruiting`

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Linkedin URL:
const result = await mcp.callTool({
  name: "clockwork_recruiting-add-person-linkedin",
  arguments: {
    personId: "Person Id",
    linkedinUrl: "Linkedin URL",
  },
})
```

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

## API proxy

For a Clockwork Recruiting 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.example.com/v1/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZXhhbXBsZS5jb20vdjEvbWU?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: "clockwork_recruiting-add-person-linkedin",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    clockwork_recruiting: { authProvisionId: "apn_xxxxxxx" },
    personId: "Person Id",
    linkedinUrl: "Linkedin URL",
  },
})
```

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

## Actions (12)

### `clockwork_recruiting-add-person-linkedin` — Add Linkedin URL (Write)

Add a linkedin URL to a specific person. See the documentation

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/add-person-linkedin.md

### `clockwork_recruiting-add-person-address` — Add Person Address (Write)

Create an address to a specific person. See the documentation

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/add-person-address.md

### `clockwork_recruiting-add-person-email` — Add Person Email (Write)

Create an email address to a specific person. See the documentation

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/add-person-email.md

### `clockwork_recruiting-add-person-tag` — Add Person Tag (Write)

Add a tag to a specific person. See the documentation

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/add-person-tag.md

### `clockwork_recruiting-add-person-phone-number` — Add Phone Number (Write)

Add a phone number to a specific person. See the documentation

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/add-person-phone-number.md

### `clockwork_recruiting-add-person-position` — Add Position (Write)

Add a position to a specific person. See the documentation

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/add-person-position.md

### `clockwork_recruiting-create-person` — Create A Person (Write)

Create a new person with provided data. See the documentation

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/create-person.md

### `clockwork_recruiting-list-company-id-options` — List Company Id Options (Read-only)

Retrieves available options for the Company Id field.

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/list-company-id-options.md

### `clockwork_recruiting-list-person-id-options` — List Person Id Options (Read-only)

Retrieves available options for the Person Id field.

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/list-person-id-options.md

### `clockwork_recruiting-list-region-id-options` — List Region Id Options (Read-only)

Retrieves available options for the Region Id field.

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/list-region-id-options.md

### `clockwork_recruiting-list-tag-ids-options` — List Tag Ids Options (Read-only)

Retrieves available options for the Tag Ids field.

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/list-tag-ids-options.md

### `clockwork_recruiting-list-tag-names-options` — List Tag Names Options (Read-only)

Retrieves available options for the Tag Names field.

Full schema: https://pipedream.com/apps/clockwork-recruiting/actions/list-tag-names-options.md

## Triggers (1)

### `clockwork_recruiting-candidate-status-change` — New Candidate Status Change (Instant) (Instant)

Emit new event when a candidate status is changed.

Full schema: https://pipedream.com/apps/clockwork-recruiting/triggers/candidate-status-change.md

---

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