# TalentHR — Pipedream Connect

> A simple, all-in-one HR software focused on people.

- API slug: `talenthr` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Human Resources
- Website: https://www.talenthr.io/
- This page (HTML): https://pipedream.com/apps/talenthr
- Tools: 13 actions · 2 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: talenthr`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Employee:
const result = await mcp.callTool({
  name: "talenthr-create-employee",
  arguments: {
    firstName: "First Name",
    lastName: "Last Name",
  },
})
```

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

## API proxy

For a TalentHR 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://pubapi.talenthr.io/v1/timezones

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9wdWJhcGkudGFsZW50aHIuaW8vdjEvdGltZXpvbmVz?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: "talenthr-create-employee",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    talenthr: { authProvisionId: "apn_xxxxxxx" },
    firstName: "First Name",
    lastName: "Last Name",
  },
})
```

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

## Actions (13)

### `talenthr-create-employee` — Create Employee (Write)

Hires a new employee and registers them in the system. See the documentation

Full schema: https://pipedream.com/apps/talenthr/actions/create-employee.md

### `talenthr-list-country-options` — List Country Options (Read-only)

Retrieves available options for the Country field.

Full schema: https://pipedream.com/apps/talenthr/actions/list-country-options.md

### `talenthr-list-department-id-options` — List Department ID Options (Read-only)

Retrieves available options for the Department ID field.

Full schema: https://pipedream.com/apps/talenthr/actions/list-department-id-options.md

### `talenthr-list-division-id-options` — List Division ID Options (Read-only)

Retrieves available options for the Division ID field.

Full schema: https://pipedream.com/apps/talenthr/actions/list-division-id-options.md

### `talenthr-list-emergency-contact-relationship-type-id-options` — List Emergency Contact Relationship Type Options (Read-only)

Retrieves available options for the Emergency Contact Relationship Type field.

Full schema: https://pipedream.com/apps/talenthr/actions/list-emergency-contact-relationship-type-id-options.md

### `talenthr-list-employee-id-options` — List Employee ID Options (Read-only)

Retrieves available options for the Employee ID field.

Full schema: https://pipedream.com/apps/talenthr/actions/list-employee-id-options.md

### `talenthr-list-employment-status-id-options` — List Employment Status ID Options (Read-only)

Retrieves available options for the Employment Status ID field.

Full schema: https://pipedream.com/apps/talenthr/actions/list-employment-status-id-options.md

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

Retrieves available options for the Job Location ID field.

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

### `talenthr-list-job-position-id-options` — List Job Position Options (Read-only)

Retrieves available options for the Job Position field.

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

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

Retrieves available options for the Job Title ID field.

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

### `talenthr-list-nationality-options` — List Nationality Options (Read-only)

Retrieves available options for the Nationality field.

Full schema: https://pipedream.com/apps/talenthr/actions/list-nationality-options.md

### `talenthr-respond-time-off-request` — Respond to Time Off Request (Write)

Responds to an employee's time off request. This action requires the request ID and the response status as props. See the documentation

Full schema: https://pipedream.com/apps/talenthr/actions/respond-time-off-request.md

### `talenthr-update-employee` — Update Employee (Write)

Allows updating an existing employee's data in the system. See the documentation

Full schema: https://pipedream.com/apps/talenthr/actions/update-employee.md

## Triggers (2)

### `talenthr-new-employee` — New Employee Created (Polling)

Emit new event whenever a new employee is created. See the documentation

Full schema: https://pipedream.com/apps/talenthr/triggers/new-employee.md

### `talenthr-new-ats-application` — New Job Application Submitted (Polling)

Emit new event when a new job application is submitted. See the documentation

Full schema: https://pipedream.com/apps/talenthr/triggers/new-ats-application.md

---

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