get_birds_by_authority
Retrieve bird species described by a specific taxonomic authority using the AviBase MCP Server. Input an authority name and optional limit to filter results.
Instructions
Find birds described by a specific taxonomic authority (e.g., Linnaeus, Darwin, etc.).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
authority | Yes | Name of the taxonomic authority | |
limit | No | Maximum number of results to return (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"authority": {
"description": "Name of the taxonomic authority",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of results to return (default: 50)",
"type": "number"
}
},
"required": [
"authority"
],
"type": "object"
}