search-bible
Find Bible verses containing specific keywords in Korean or English across multiple Korean Bible translations. Search limited books to locate relevant scripture passages.
Instructions
Search for verses containing specific keywords (searches limited books for demo)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search query (Korean or English) | |
version | No | Bible translation version (default: GAE) | GAE |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Search query (Korean or English)",
"type": "string"
},
"version": {
"default": "GAE",
"description": "Bible translation version (default: GAE)",
"enum": [
"GAE",
"GAE1",
"NIR",
"KOR",
"CEV"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}