List Features by Baseline Status
compat_list_baselineFilter and list web platform features by their Baseline status: Widely Available, Newly Available, or not yet Baseline. Supports filtering by feature group and pagination.
Instructions
List web platform features filtered by their Baseline status.
Use this to discover which features are Widely Available, Newly Available, or not yet Baseline.
Args:
status (string, optional): Filter by "high" (Widely Available), "low" (Newly Available), or "false" (Not Baseline)
group (string, optional): Filter by feature group (e.g., "css", "javascript", "forms")
limit (number): Max results (default: 20, max: 100)
offset (number): Pagination offset (default: 0)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Paginated list of features with their Baseline status and availability dates.
Examples:
"List all Widely Available features" → status: "high"
"What CSS features are Newly Available?" → status: "low", group: "css"
"What features aren't Baseline yet?" → status: "false"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group | No | Filter by web-features group (e.g., "css", "javascript", "forms") | |
| limit | No | Maximum number of results to return (1-100, default: 20) | |
| offset | No | Number of results to skip for pagination (default: 0) | |
| status | No | Filter by Baseline status: "high" (Widely Available), "low" (Newly Available), "false" (Not Baseline) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |