Context Awesome

get_awesome_items

Retrieves items from a specific awesome list or section with token limiting. You must call 'find_awesome_section' first to discover available sections, UNLESS the user explicitly provides a githubRepo or listId.

Remote bh-rat/context-awesome

Other tools also called get_awesome_items? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "listId": {
      "type": "string",
      "description": "UUID of the list (from find_awesome_section results)"
    },
    "offset": {
      "type": "number",
      "default": 0,
      "minimum": 0,
      "description": "Pagination offset for retrieving more items"
    },
    "tokens": {
      "type": "number",
      "description": "Maximum number of tokens to return (default: 10000). Higher values provide more items but consume more tokens."
    },
    "section": {
      "type": "string",
      "description": "Category/section name to filter"
    },
    "githubRepo": {
      "type": "string",
      "description": "GitHub repo path (e.g., 'sindresorhus/awesome') from find_awesome_section results"
    },
    "subcategory": {
      "type": "string",
      "description": "Subcategory to filter"
    }
  }
}