> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kalent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# get_sourcings

> List paginated sourcings for the authenticated workspace.

Read-only MCP tool that returns sourcing ids and names for the authenticated workspace.

## Input

| Field       | Type                      | Default       | Description            |
| ----------- | ------------------------- | ------------- | ---------------------- |
| `page`      | number                    | `0`           | Zero-based page index  |
| `pageSize`  | number                    | `8`           | Page size (max 50)     |
| `ownership` | `mine` \| `all`           | `mine`        | Visibility filter      |
| `status`    | `in-progress` \| `closed` | `in-progress` | Sourcing status filter |

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "sourcings": [],
    "pagination": {
      "page": 0,
      "pageSize": 8,
      "total": 0,
      "hasNextPage": false
    }
  }
}
```

Each sourcing item has this shape:

```json theme={null}
{
  "sourcingId": "sourcing_123",
  "name": "Senior Backend Engineer"
}
```
