# CATS — Pipedream Connect

> CATS Applicant Tracking System (ATS) & Recruiting Software

- API slug: `cats` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Human Resources
- Website: https://catsone.com/
- This page (HTML): https://pipedream.com/apps/cats
- Tools: 9 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: cats`

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Candidate to Job Pipeline:
const result = await mcp.callTool({
  name: "cats-add-candidate-pipeline",
  arguments: {
    createActivity: true,
    candidateId: 10,
  },
})
```

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

## API proxy

For a CATS 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.catsone.com/v3/users

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuY2F0c29uZS5jb20vdjMvdXNlcnM?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: "cats-add-candidate-pipeline",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    cats: { authProvisionId: "apn_xxxxxxx" },
    createActivity: true,
    candidateId: 10,
  },
})
```

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

## Actions (9)

### `cats-add-candidate-pipeline` — Add Candidate to Job Pipeline (Write)

Adds a specific candidate to a job pipeline in CATS. See the documentation

Full schema: https://pipedream.com/apps/cats/actions/add-candidate-pipeline.md

### `cats-create-candidate` — Create Candidate (Write)

Create a new candidate in your CATS database. See the documentation

Full schema: https://pipedream.com/apps/cats/actions/create-candidate.md

### `cats-create-contact` — Create Contact (Write)

Adds a new contact to the CATS platform. See the documentation

Full schema: https://pipedream.com/apps/cats/actions/create-contact.md

### `cats-list-candidate-id-options` — List Candidate ID Options (Read-only)

Retrieves available options for the Candidate ID field.

Full schema: https://pipedream.com/apps/cats/actions/list-candidate-id-options.md

### `cats-list-company-id-options` — List Company ID Options (Read-only)

Retrieves available options for the Company ID field.

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

### `cats-list-contact-id-options` — List Contact Id Options (Read-only)

Retrieves available options for the Contact Id field.

Full schema: https://pipedream.com/apps/cats/actions/list-contact-id-options.md

### `cats-list-custom-fields-options` — List Custom Fields Options (Read-only)

Retrieves available options for the Custom Fields field.

Full schema: https://pipedream.com/apps/cats/actions/list-custom-fields-options.md

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

Retrieves available options for the Job ID field.

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

### `cats-list-owner-id-options` — List Owner ID Options (Read-only)

Retrieves available options for the Owner ID field.

Full schema: https://pipedream.com/apps/cats/actions/list-owner-id-options.md

## Triggers (3)

### `cats-new-activity-instant` — New Activity (Instant) (Instant)

Emit new event when an activity related to a cat is created.

Full schema: https://pipedream.com/apps/cats/triggers/new-activity-instant.md

### `cats-new-candidate-instant` — New Candidate (Instant) (Instant)

Emit new event when a new candidate is created.

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

### `cats-new-contact-instant` — New Contact Created (Instant) (Instant)

Emit new event when a contact related to a cat is created.

Full schema: https://pipedream.com/apps/cats/triggers/new-contact-instant.md

---

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