find_species

Pack: ebird · Endpoint: https://gateway.pipeworx.io/ebird/mcp

Search the eBird taxonomy by common or scientific name. Returns the eBird species code needed by the observation tools.

Parameters

NameTypeRequiredDescription
querystringyesCommon or scientific name

Example call

curl -X POST https://gateway.pipeworx.io/ebird/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_species","arguments":{}}}'

Response shape

Always returns: query, count, species

FieldTypeDescription
querystringSearch query string
countnumberNumber of species results
speciesarrayList of matching species
Full JSON Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query string"
    },
    "count": {
      "type": "number",
      "description": "Number of species results"
    },
    "species": {
      "type": "array",
      "description": "List of matching species",
      "items": {
        "type": "object",
        "properties": {
          "species_code": {
            "type": [
              "string",
              "null"
            ],
            "description": "eBird species code"
          },
          "name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Species common or scientific name"
          }
        },
        "required": []
      }
    }
  },
  "required": [
    "query",
    "count",
    "species"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ebird": {
      "url": "https://gateway.pipeworx.io/ebird/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026