things_get_areas
Retrieve all areas from your Things 3 workspace to organize tasks and projects by category, with optional result limits for focused management.
Instructions
Get all areas
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_results | No | Limit number of results returned (defaults to all if not specified) |
Implementation Reference
- src/tools/get.ts:52-55 (registration)Registration of the "things_get_areas" tool in the GetToolHandler definitions list.
name: 'things_get_areas', description: 'Get all areas', schema: GetListSchema }, - src/tools/get.ts:159-161 (handler)Handler logic for "things_get_areas", parsing the script output into a JSON response.
case 'things_get_areas': result = { areas: parseAreaList(output) }; break;