pages_by_name
Pack: eol · Endpoint: https://gateway.pipeworx.io/eol/mcp
Find EOL page id(s) for an exact scientific name.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | e.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
| Field | Type | Description |
|---|---|---|
name | string | The scientific name searched for |
matches | array | EOL 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.