search_birds
Identify birds by scientific or common name with fuzzy or exact matching support. Retrieve results efficiently from the AviBase MCP Server to explore taxonomic and conservation data.
Instructions
Search for birds by scientific or common name with fuzzy matching support.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exact | No | Whether to use exact matching (default: false for fuzzy search) | |
limit | No | Maximum number of results to return (default: 20) | |
query | Yes | Search term (bird name to search for) |
Input Schema (JSON Schema)
{
"properties": {
"exact": {
"default": false,
"description": "Whether to use exact matching (default: false for fuzzy search)",
"type": "boolean"
},
"limit": {
"default": 20,
"description": "Maximum number of results to return (default: 20)",
"type": "number"
},
"query": {
"description": "Search term (bird name to search for)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}