get_authors_by_name
Retrieve detailed author information from Open Library by entering the author's name to facilitate efficient book-related searches and research.
Instructions
Search for author information on Open Library.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the author to search for. |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the author to search for.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}