get_birds_by_taxonomy
Retrieve bird data filtered by taxonomic classification such as Order, Family, or Taxa from AviBase MCP Server. Specify rank and value to fetch results efficiently.
Instructions
Get birds filtered by taxonomic classification (Order, Family, or taxonomic rank).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
level | Yes | Taxonomic level to filter by | |
limit | No | Maximum number of results to return (default: 50) | |
value | Yes | Value to filter by (e.g., "Strigiformes" for owls, "Accipitridae" for hawks) |
Input Schema (JSON Schema)
{
"properties": {
"level": {
"description": "Taxonomic level to filter by",
"enum": [
"Order",
"Family",
"Taxon_rank"
],
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of results to return (default: 50)",
"type": "number"
},
"value": {
"description": "Value to filter by (e.g., \"Strigiformes\" for owls, \"Accipitridae\" for hawks)",
"type": "string"
}
},
"required": [
"level",
"value"
],
"type": "object"
}