list_kb_articles
List GLPI knowledge base articles with pagination. Use range_start and range_limit to control batch size and avoid server memory limits.
Instructions
List GLPI knowledge base articles with pagination.
Each KnowbaseItem returned by the API embeds the full HTML answer. On large KBs this makes the JSON response heavy: in production we observed that range_start > 60 combined with range_limit > 10 is enough to exceed PHP-FPM memory_limit on the GLPI side and the request fails. To stay below that ceiling, range_limit is auto-clamped to 10 when range_start > 60. When clamping kicks in the response is wrapped in a dict carrying _clamped_range_limit and _warning so callers can detect the change. Behaviour is unchanged for range_start <= 60.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| range_limit | No | ||
| range_start | No |