Get books by author
get_books_by_authorRetrieve all books by a specified author, including title, series, tags, and formats. Supports partial name matching and sorting results.
Instructions
Get all books by a specific author. Returns book details including title, series, tags, and formats. Use search_authors_by_name first if you need to find the exact author name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| exact | No | If true, match the exact author name. If false (default), perform a partial/contains search. | |
| limit | No | Maximum number of results to return (default: 50, max: 100). | |
| author | Yes | Author name to search for. Partial matches supported (e.g., 'Tolkien' finds books by 'J.R.R. Tolkien'). | |
| sortBy | No | Field to sort results by (default: title). | title |
| ascending | No | Sort in ascending order (default: true). |