custom_bird_query
Analyze bird data using advanced filters for family, order, IUCN status, and taxon rank with AviBase MCP Server’s query tool, designed for precise, in-depth research.
Instructions
Perform complex queries with multiple filters for advanced bird data analysis.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| filters | Yes | Object containing field-value pairs for filtering | |
| limit | No | Maximum number of results to return (default: 50) | 
Input Schema (JSON Schema)
{
  "properties": {
    "filters": {
      "description": "Object containing field-value pairs for filtering",
      "properties": {
        "Family": {
          "type": "string"
        },
        "IUCN_Red_List_Category": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "Order": {
          "type": "string"
        },
        "Taxon_rank": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "limit": {
      "default": 50,
      "description": "Maximum number of results to return (default: 50)",
      "type": "number"
    }
  },
  "required": [
    "filters"
  ],
  "type": "object"
}