drives.list
List every drive the user can access, each with its items and members.
GET /api/v1/drives
- SDK:
tb.drives.list(input) - CLI:
thinkbench drives list - MCP tool:
drives_list
Input
This operation takes no input.
Output
| Field | Type | Description |
|---|---|---|
drives |
Drive[] |
Examples
curl
curl "https://app.thinkbench.com/api/v1/drives" \
-H "x-api-key: $THINKBENCH_API_KEY"TypeScript SDK
const result = await tb.drives.list();CLI
thinkbench drives listMCP
{
"name": "drives_list",
"arguments": {}
}