lb_list_para_items
Returns a list of PARA items from your knowledge graph. Use this to discover existing structure before creating new items or scoping searches.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
category | string | No | — | Filter by PARA category: projects, areas, or resources |
status | string | No | active | Filter by status: active, completed, or archived |
limit | number | No | 100 | Number of items to return (1–200) |
Response
Section titled “Response”{ "items": [...], "has_more": false}Each item includes id, slug, label, category, status, description, and created_at.
has_more is true when the total number of matching items exceeds limit. Pagination is not currently supported — increase limit to retrieve more items in a single call.
Usage notes
Section titled “Usage notes”- The default
statusfilter isactive. To list archived or completed items, pass the status explicitly. There is noallfilter — to list all items regardless of status, make separate calls for each status value (active,completed,archived). - When using
lb_get_contextorlb_searchwithpara_item_id, calllb_list_para_itemsfirst to look up the correct ID from a label or slug.