# drives.list

List every drive the user can access, each with its items and members.

`GET /api/v1/drives`

- SDK: [`tb.drives.list(input)`](/sdk)
- CLI: [`thinkbench drives list`](/cli)
- MCP tool: [`drives_list`](/mcp)

## Input

This operation takes no input.

## Output

| Field | Type | Description |
| --- | --- | --- |
| `drives` | [Drive](/api/objects/drive)`[]` |  |

## Examples

### curl

```bash
curl "https://app.thinkbench.com/api/v1/drives" \
  -H "x-api-key: $THINKBENCH_API_KEY"
```

### TypeScript SDK

```ts
const result = await tb.drives.list();
```

### CLI

```bash
thinkbench drives list
```

### MCP

```json
{
  "name": "drives_list",
  "arguments": {}
}
```
