Skip to content

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.

ParameterTypeRequiredDefaultDescription
categorystringNoFilter by PARA category: projects, areas, or resources
statusstringNoactiveFilter by status: active, completed, or archived
limitnumberNo100Number of items to return (1–200)
{
"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.

  • The default status filter is active. To list archived or completed items, pass the status explicitly. There is no all filter — to list all items regardless of status, make separate calls for each status value (active, completed, archived).
  • When using lb_get_context or lb_search with para_item_id, call lb_list_para_items first to look up the correct ID from a label or slug.