pages_by_name

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

Find EOL page id(s) for an exact scientific name.

Parameters

NameTypeRequiredDescription
namestringyese.g. “Panthera leo”

Example call

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

Response shape

Always returns: name, matches

FieldTypeDescription
namestringThe scientific name searched for
matchesarrayEOL page results matching the exact name
Full JSON Schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The scientific name searched for"
    },
    "matches": {
      "type": "array",
      "description": "EOL page results matching the exact name",
      "items": {}
    }
  },
  "required": [
    "name",
    "matches"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026