list-books
Retrieve all Bible books with optional filtering by Old or New Testament to quickly identify available scriptures in Korean translations.
Instructions
List all available books in the Bible
Input Schema
Name | Required | Description | Default |
---|---|---|---|
testament | No | Filter by testament (OT/NT, optional) |
Input Schema (JSON Schema)
{
"properties": {
"testament": {
"description": "Filter by testament (OT/NT, optional)",
"enum": [
"OT",
"NT"
],
"type": "string"
}
},
"type": "object"
}