get_categories
Retrieve categories or pages within a specific category from the Consumer Rights Wiki. Specify a category name to filter results or list all categories. Supports limits for controlled output.
Instructions
Get all categories or pages in a specific category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category name (without Category: prefix). If empty, lists all categories. | |
limit | No | Number of results to return (default: 20, max: 50) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category name (without Category: prefix). If empty, lists all categories.",
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results to return (default: 20, max: 50)",
"type": "number"
}
},
"type": "object"
}