search_lexicon_entries
biblehub.comSearches Hebrew or Greek Strong's lexicon entries on https://biblehub.com by keyword, meaning, or transliteration. Returns relevance-ordered matching entries with Strong's numbers, headwords, descriptions, and context snippets.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_lexicon_entries?
Searches Hebrew or Greek Strong's lexicon entries on https://biblehub.com by keyword, meaning, or transliteration. Returns relevance-ordered matching entries with Strong's numbers, headwords, descriptions, and context snippets. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass language, query, max_results, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"results": [
{}
],
"summary": "<string>",
"language": "<string>",
"page_title": "<string>",
"source_url": "<string>",
"search_heading": "<string>",
"returned_results": 0,
"total_results_reported": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/68b13ca6-edaf-405f-a111-5c0f42d18ff2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "68b13ca6-edaf-405f-a111-5c0f42d18ff2",
"variables": {
"language": "hebrew",
"query": "elohim",
"max_results": 25,
"timeout_seconds": "DEFAULT_TIMEOUT_SECONDS"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="68b13ca6-edaf-405f-a111-5c0f42d18ff2") — the "search_lexicon_entries" function, which searches Hebrew or Greek Strong's lexicon entries on https://biblehub.com by keyword, meaning, or transliteration. Returns relevance-ordered matching entries with Strong's numbers, headwords, descriptions, and context snippets.. It takes language (str), query (str), max_results (int), timeout_seconds (int). Return the result as structured JSON.