Newcontext-mode—Save 98% of your AI coding agent's context windowLearn more
MCP Directory
ServersClientsBlog

context-mode

Save 98% of your AI coding agent's context window. Works with Claude Code, Cursor, Copilot, Codex, and more.

Try context-mode
MCP Directory

Model Context Protocol Directory

MKSF LTD
Suite 8805 5 Brayford Square
London, E1 0SG

MCP Directory

  • About
  • Blog
  • Documentation
  • Contact

Menu

  • Servers
  • Clients

© 2026 model-context-protocol.com

The Model Context Protocol (MCP) is an open standard for AI model communication.
Powered by Mert KoseogluSoftware Forge
  1. Home
  2. Servers
  3. bht-mcp-server

bht-mcp-server

GitHub

MCP server for the [BHt (Biblia Hebraica transcripta)](https://www.bht.gwi.uni-muenchen.de/) Hebrew Bible database at LMU Munich.

0
0

bht-mcp

MCP server for the BHt (Biblia Hebraica transcripta) Hebrew Bible database at LMU Munich.

Ask your AI assistant to search, analyze, and compare 489,000+ morphologically analyzed Hebrew Bible tokens — directly from your chat interface.

You:  "Using BHt, compare the use of root BRʾ (create) in Genesis vs Isaiah"
AI:   [calls bht_search with Wurzel filter for each book, then bht_token_detail
       on selected tokens — returns morphological breakdowns, verbal stems,
       and syntactic contexts from both books]

🇰🇷 한국어


About BHt

BHt (Biblia Hebraica transcripta) is a digital transcription of the Hebrew Bible maintained at LMU Munich under the direction of Prof. Wolfgang Richter. It features:

  • 489,437 tokens with full morphological analysis
  • Richter transcription system — Latin-script phonemic representation (e.g., barā(ʾ) for בָּרָא)
  • 5-class part-of-speech system (Hauptwortart, Nebenwortart, Fügwortart, etc.)
  • Syntactic trees at word-level (Wortfügungsebene) and sentence-level (Satzfügungsebene)
  • Textual criticism annotations with Greek/Masoretic manuscript variant data
  • 8 Sirach manuscript fragments (Ben Sira, from Cairo Genizah and Masada)

Table of Contents

  • About BHt
  • How It Works
  • Installation & Setup
  • Setting Up Your MCP Client
  • Research Scenarios
  • Tool Reference
  • Rate Limits
  • License
  • 🇰🇷 한국어

How It Works

┌──────────────┐  stdio  ┌──────────────────┐  cache miss  ┌──────────────┐
│  MCP Client  │ ───────→│  bht-mcp         │ ────────────→│  BHt Website │
│  (Claude,    │ ←───────│  (local process) │ ←────────────│ (LMU Munich) │
│  local LLM,  │         │  ┌────────────┐  │              └──────────────┘
│  etc.)       │         │  │ ~/.bht/    │  │
└──────────────┘         │  │ cache.db   │  │  ← local SQLite cache
                         │  └────────────┘  │
                         └──────────────────┘
  • Runs entirely on your machine. No remote server, no API keys, no cost.
  • Progressive caching. The first search for a book fetches all its tokens in one request. After that, searches in the same book are instant — zero network calls.
  • Respectful. Built-in rate limits (1 req/s, 150 HTML pages/day) protect the university server. The tool never bulk-scrapes.

Installation & Setup

Option A: Using uv (recommended)

With uv, you don't install bht-mcp yourself. Your MCP client runs uvx bht-mcp, and uvx automatically downloads it from PyPI, creates an isolated environment, and launches the server — all at runtime.

You only need to install uv itself (one-time):

PlatformCommand
macOSbrew install uv
Windowspowershell -c "irm https://astral.sh/uv/install.ps1 | iex"
Linuxcurl -LsSf https://astral.sh/uv/install.sh | sh

Then go directly to Setting Up Your MCP Client below.

Updating (uv): uvx caches packages locally. To get the latest version:

uv cache clean bht-mcp

Then restart your MCP client.

Option B: Using pip

Install bht-mcp manually, then point your MCP client to it:

pip install bht-mcp

Updating (pip):

pip install --upgrade bht-mcp

Requires Python 3.11+. If Python is not installed: python.org/downloads (Windows: check "Add Python to PATH"). macOS: brew install python. Linux: sudo apt install python3 python3-pip.


Setting Up Your MCP Client

MCP (Model Context Protocol) lets AI assistants use external tools. Choose your client below:

Claude Desktop

Edit your MCP settings (Settings → Developer → MCP Servers) and add:

If you installed with uv:

{
  "mcpServers": {
    "bht": {
      "command": "uvx",
      "args": ["bht-mcp"]
    }
  }
}

If you installed with pip:

{
  "mcpServers": {
    "bht": {
      "command": "python",
      "args": ["-m", "bht_mcp"]
    }
  }
}

Claude Code

claude mcp add bht -- uvx bht-mcp

Or with pip:

claude mcp add bht -- python -m bht_mcp

Local LLMs (Open WebUI, llama.cpp, Ollama, etc.)

If your local LLM setup supports MCP, configure it to launch bht-mcp as a stdio subprocess:

With uv:

{
  "mcpServers": {
    "bht": {
      "command": "uvx",
      "args": ["bht-mcp"]
    }
  }
}

With pip:

{
  "mcpServers": {
    "bht": {
      "command": "python",
      "args": ["-m", "bht_mcp"]
    }
  }
}

Note: MCP tool calling requires a model that supports function/tool calling. Most 7B+ instruction-tuned models work (Llama 3, Mistral, Qwen, etc.).

Other MCP-compatible clients

Any client that supports MCP stdio transport can use bht-mcp. Use uvx bht-mcp or python -m bht_mcp as the server command.

After adding, restart your client. You should see 7 BHt tools available.


Research Scenarios

Tip: Always mention "BHt" or "BHt database" in your prompt to ensure the AI uses the BHt tools instead of answering from its own knowledge. For example, say "Using BHt, show me..." rather than just "Show me...".

Note: The tool call sequences shown below are representative — the actual steps may vary depending on the AI model's reasoning. The AI may explore deeper, take different paths, or combine steps differently. This is expected behavior.

1. Verse analysis — word by word

"Using BHt, show me Genesis 1:1 word by word with grammatical analysis"

Step 1  AI calls bht_search → finds 11 tokens in Gen 1:1 (with beleg_nr for each)
Step 2  AI calls bht_token_detail(beleg_nr=N) for each token → retrieves full morphology

Results:

  Token          Part of Speech        Person  Gender  Number  Stem  Root
  ─────────────  ────────────────────  ──────  ──────  ──────  ────  ────
  b˙             Praeposition          —       —       —       —     —
  rē(ʾ)šīt      Substantiv            —       F       S       —     Rʾš
  barā(ʾ)        Suffixkonjugation     3       M       S       Qal   BRʾ
  ʾïlō*hīm      Substantiv            Abs     M       P       —     ʾL
  ʾȧt            Praeposition          —       —       —       —     —
  ha             Artikel               —       —       —       —     —
  šamaym         Substantiv            —       M       P       —     ŠMM
  w˙             Konjunktion           —       —       —       —     —
  ʾȧt            Praeposition          —       —       —       —     —
  ha             Artikel               —       —       —       —     —
  ʾarṣ           Substantiv            —       F       S       —     ʾRṢ

  BHt requests: 1 JSON search + 11 HTML token details = 12 total
  On repeat: 0 (all cached locally)

2. Cross-book root comparison

"Using BHt, compare the use of root BRʾ (create) in Genesis vs Isaiah"

Step 1  AI calls bht_search with Wurzel=BRʾ, buch=Gen → 17 tokens
        (server auto-resolves transcription "BRʾ" to betacode "%B%R%@")
Step 2  AI calls bht_search with Wurzel=BRʾ, buch=Jes → 21 tokens
Step 3  AI calls bht_token_detail(beleg_nr=N) on selected tokens

Results:

  Genesis — 17 occurrences (11 verb BRʾ 1 "create" + 6 adj BRʾ 2 "fat"):
    Qal SK:    barā(ʾ) — "he created" (narrative perfect)
    Qal PK:    yibrā(ʾ) — wayyiqtol narrative
    Niphal:    hibbarïʾ-a — passive infinitive

  Isaiah — 21 occurrences (all verb BRʾ 1 "create"):
    Qal PTZ:   bōrē(ʾ) — participle "Creator" (10 of 21 — divine title)
    Qal SK 1cs: bȧrā(ʾ)tī — "I created" (divine self-declaration)
    Niphal SK:  nibrȧʾū — "they were created"

  First run:  2 JSON searches + ~8 HTML token details = ~10 total
  On full repeat: 0 (all cached)

3. Syntactic structure comparison

"Using BHt, compare the syntax of Genesis 1:1 and Exodus 2:1"

Step 1  AI calls bht_syntax_tree for Gen 1:1 (satz omitted → returns all sentences)
Step 2  AI calls bht_syntax_tree for Ex 2:1 (satz omitted → returns all sentences)

Results:

  Gen 1:1 — 2 sentences (P, PR):
    P:  PV → [PRAEP: b˙, SUB: rē(ʾ)šīt]
    PR: KOORDV → [PV → [PRAEP, ATKV], KONJS → [KONJ, PV → [PRAEP, ATKV]]]

  Ex 2:1 — 2 sentences (a, b):
    a: KONJV → [KONJ: wa, PK: yilik]
    b: KONJV → [KONJ: wa, PK: yiqqaḥ]

  First run:  2 syntax tree calls (each resolves internally) = ~6 HTML total
  On full repeat: 0 (all cached)

4. Textual criticism

"Using BHt, check for textual criticism annotations in Genesis 1"

Step 1  AI calls bht_text_annotations for Gen chapter 1

Results:

  Location       Token    Type  Annotation
  ─────────────  ───────  ────  ─────────────────────────────────────────
  Gen 1,7c (3)   kin      TS    als 6d in G; G + 7c text added
  Gen 1,9b (9)   maqōm   T     G reads miqwǟ, MT reads miqwē-m?
  Gen 1,9d (3)   kin      TS    G + 9e text added
  Gen 1,20c (11) šamaym   TS    G + d text added

  Types: TS = text security note, T = text variant
  Manuscripts: G = Greek (Septuagint), MT = Masoretic Text

  First run:  1 HTML page (all annotations for entire chapter in one call)
  On repeat: 0 (cached)

5. Aramaic section detection in Daniel

"Using BHt, which parts of Daniel are in Aramaic rather than Hebrew?"

Step 1  AI calls bht_field_info for "sprache" → discovers language codes
Step 2  AI calls bht_search with buch=Dan, sprache=fa:f+ → Aramaic tokens
Step 3  AI calls bht_search with buch=Dan, sprache=fh:f+ → Hebrew tokens

Results:

  Language  Chapters        Token count
  ────────  ──────────────  ───────────
  Hebrew    1:1–2:4a        ~250 tokens
  Aramaic   2:4b–7:28       ~4,800 tokens
  Hebrew    8:1–12:13       ~2,100 tokens

  The AI identifies the well-known bilingual structure of Daniel
  directly from the linguistic data — no manual chapter lookup needed.

  First run:  1 JSON autocomplete + 2 JSON searches (Aramaic + Hebrew) = 3 total
  On repeat: 0 (all cached)

Tool Reference

ToolPurposeBHt Requests
bht_list_booksList all 47 books with codes and chapter counts0
bht_field_infoGet valid values for any of 42 search fields0–1
bht_searchSearch tokens by location or morphological filters0–1
bht_token_detailFull morphological analysis of a single token0–1
bht_syntax_treeWord-level syntactic tree (Wortfügungsebene)0–2
bht_sentence_analysisSentence-level analysis (Satzfügungsebene)0–2
bht_text_annotationsTextual criticism annotations for a chapter0–1

Typical workflow: bht_search → bht_token_detail(beleg_nr) → bht_syntax_tree

Every response includes a quota field showing daily usage:

{
  "data": [...],
  "quota": {"daily_html_used": 12, "daily_html_limit": 150, "daily_html_remaining": 138}
}

Rate Limits

This tool accesses a university research server. Built-in limits protect it:

LimitValueReason
Request interval1 req/sServer capacity protection
Daily HTML requests150/dayToken detail, syntax, sentence, annotation pages
Daily JSON requestsUnlimitedSearch API is lightweight

These limits are comparable to a researcher manually browsing the site (typically 25–100 pages/day). The daily limit resets at midnight.

When the limit is reached, cached data remains fully accessible — only new HTML fetches are blocked.


License

Code: MIT

BHt data: CC BY-SA 4.0 (LMU Munich)


🇰🇷 한국어

AI 어시스턴트에게 히브리어 성경 489,000개 이상의 형태론 분석 토큰을 검색, 분석, 비교하도록 요청하세요 — 채팅 인터페이스에서 바로.

사용자: "BHt에서 창세기와 이사야의 어근 BRʾ(창조하다) 사용을 비교해줘"
AI:    [각 책에서 어근 필터로 bht_search를 호출하고, 선택된 토큰에 대해
        bht_token_detail을 호출 — 두 책의 형태론 분석, 동사 어간,
        통사적 맥락을 반환합니다]

BHt 소개

BHt (Biblia Hebraica transcripta)는 뮌헨 대학교(LMU Munich)에서 Wolfgang Richter 교수의 지도 아래 관리되는 히브리어 성경 디지털 전사본입니다.

  • 489,437개 토큰 — 완전한 형태론 분석 포함
  • Richter 전사 체계 — 라틴 문자 기반 음소 표기 (예: barā(ʾ) = בָּרָא)
  • 5분류 품사 체계 (Hauptwortart, Nebenwortart, Fügwortart 등)
  • 통사 트리 — 단어 수준(Wortfügungsebene) 및 문장 수준(Satzfügungsebene)
  • 텍스트 비평 주석 — 그리스어/마소라 사본 이본 데이터
  • 시라크 사본 단편 8종 (벤 시라, 카이로 게니자 및 마사다 출토)

작동 방식

┌──────────────┐  stdio  ┌──────────────────┐  cache miss  ┌──────────────┐
│  MCP Client  │ ───────→│  bht-mcp         │ ────────────→│  BHt Website │
│  (Claude,    │ ←───────│  (local process) │ ←────────────│ (LMU Munich) │
│  local LLM,  │         │  ┌────────────┐  │              └──────────────┘
│  etc.)       │         │  │ ~/.bht/    │  │
└──────────────┘         │  │ cache.db   │  │  ← local SQLite cache
                         │  └────────────┘  │
                         └──────────────────┘
  • 완전히 로컬에서 실행됩니다. 원격 서버 없음, API 키 없음, 비용 없음.
  • 점진적 캐싱. 특정 책을 처음 검색하면 해당 책의 전체 토큰을 1회 요청으로 가져옵니다. 이후 같은 책의 검색은 즉시 — 네트워크 요청 0회.
  • 서버 보호. 내장 속도 제한(초당 1요청, 일일 HTML 150건)이 대학 서버를 보호합니다. 대량 스크래핑을 하지 않습니다.

설치 및 설정

방법 A: uv 사용 (권장)

uv를 사용하면 bht-mcp를 직접 설치할 필요가 없습니다. MCP 클라이언트가 uvx bht-mcp를 실행하면, uvx가 자동으로 PyPI에서 다운로드하고 격리된 환경을 생성하여 서버를 시작합니다.

uv만 설치하면 됩니다 (최초 1회):

플랫폼방법
macOSbrew install uv
Windowspowershell -c "irm https://astral.sh/uv/install.ps1 | iex"
Linuxcurl -LsSf https://astral.sh/uv/install.sh | sh

설치 후 아래 MCP 클라이언트 설정으로 바로 진행하세요.

업데이트 (uv): uvx는 패키지를 로컬에 캐시합니다. 최신 버전을 받으려면:

uv cache clean bht-mcp

이후 MCP 클라이언트를 재시작하세요.

방법 B: pip 사용

bht-mcp를 직접 설치한 후 MCP 클라이언트에서 지정하는 방식:

pip install bht-mcp

업데이트 (pip):

pip install --upgrade bht-mcp

Python 3.11 이상 필요. Python이 없는 경우: python.org/downloads (Windows: "Add Python to PATH" 체크). macOS: brew install python. Linux: sudo apt install python3 python3-pip.


MCP 클라이언트 설정

MCP (Model Context Protocol)는 AI 어시스턴트가 외부 도구를 사용할 수 있게 해줍니다. 아래에서 사용 중인 클라이언트를 선택하세요:

Claude Desktop

MCP 설정을 편집합니다 (Settings → Developer → MCP Servers):

uv로 설치한 경우:

{
  "mcpServers": {
    "bht": {
      "command": "uvx",
      "args": ["bht-mcp"]
    }
  }
}

pip으로 설치한 경우:

{
  "mcpServers": {
    "bht": {
      "command": "python",
      "args": ["-m", "bht_mcp"]
    }
  }
}

Claude Code

claude mcp add bht -- uvx bht-mcp

pip 사용 시:

claude mcp add bht -- python -m bht_mcp

로컬 LLM (Open WebUI, llama.cpp, Ollama 등)

로컬 LLM 환경이 MCP를 지원하는 경우, bht-mcp를 stdio 서브프로세스로 설정하세요:

uv 사용:

{
  "mcpServers": {
    "bht": {
      "command": "uvx",
      "args": ["bht-mcp"]
    }
  }
}

pip 사용:

{
  "mcpServers": {
    "bht": {
      "command": "python",
      "args": ["-m", "bht_mcp"]
    }
  }
}

참고: MCP tool calling을 사용하려면 함수/도구 호출을 지원하는 모델이 필요합니다. 대부분의 7B+ instruction-tuned 모델이 동작합니다 (Llama 3, Mistral, Qwen 등).

기타 MCP 호환 클라이언트

MCP stdio 전송을 지원하는 모든 클라이언트에서 사용할 수 있습니다. 서버 명령어는 uvx bht-mcp 또는 python -m bht_mcp입니다.

추가 후 클라이언트를 재시작하면 7개의 BHt 도구가 활성화됩니다.


연구 시나리오

팁: 프롬프트에 항상 "BHt" 또는 "BHt 데이터베이스"를 언급하세요. AI가 자체 지식 대신 BHt 도구를 사용하도록 유도합니다. 예: "BHt에서 ~를 확인해줘".

참고: 아래의 도구 호출 순서는 대표적인 예시입니다 — 실제 단계는 AI 모델의 추론에 따라 달라질 수 있습니다. AI가 더 깊이 탐색하거나, 다른 경로를 택하거나, 단계를 다르게 조합할 수 있습니다. 이는 정상적인 동작입니다.

1. 구절 분석 — 단어별 문법

"BHt에서 창세기 1:1을 단어별로 문법 분석과 함께 보여주세요"

단계 1  AI가 bht_search 호출 → Gen 1:1에서 11개 토큰 발견 (각 토큰의 beleg_nr 포함)
단계 2  AI가 bht_token_detail(beleg_nr=N) 호출 → 완전한 형태론 조회

결과:

  토큰           품사                  인칭  성    수    어간  어근
  ─────────────  ────────────────────  ────  ────  ────  ────  ────
  b˙             전치사(Praeposition)  —     —     —     —     —
  rē(ʾ)šīt      명사(Substantiv)      —     F     S     —     Rʾš
  barā(ʾ)        접미형(Suffixkonj.)   3     M     S     Qal   BRʾ
  ʾïlō*hīm      명사(Substantiv)      Abs   M     P     —     ʾL
  ʾȧt            전치사(Praeposition)  —     —     —     —     —
  ha             관사(Artikel)         —     —     —     —     —
  šamaym         명사(Substantiv)      —     M     P     —     ŠMM
  w˙             접속사(Konjunktion)   —     —     —     —     —
  ʾȧt            전치사(Praeposition)  —     —     —     —     —
  ha             관사(Artikel)         —     —     —     —     —
  ʾarṣ           명사(Substantiv)      —     F     S     —     ʾRṢ

  BHt 요청: JSON 검색 1회 + HTML 토큰 상세 11회 = 총 12회
  반복 시: 0회 (전부 로컬 캐시)

2. 책 간 어근 비교

"BHt에서 창세기와 이사야에서 어근 BRʾ(창조하다)의 사용을 비교해줘"

단계 1  AI가 bht_search (Wurzel=BRʾ, buch=Gen) 호출 → 17개 토큰
        (서버가 transcription "BRʾ"를 betacode "%B%R%@"로 자동 해석)
단계 2  AI가 bht_search (Wurzel=BRʾ, buch=Jes) 호출 → 21개 토큰
단계 3  AI가 bht_token_detail(beleg_nr=N) 호출 → 선택된 토큰의 어간과 형태 비교

결과:

  창세기 — 17회 출현 (동사 BRʾ 1 "창조하다" 11회 + 형용사 BRʾ 2 "살찐" 6회):
    칼(Qal) SK:    barā(ʾ) — 서사 완료형 "창조하였다"
    칼(Qal) PK:    yibrā(ʾ) — wayyiqtol 서사
    니팔(Niphal):   hibbarïʾ-a — 수동 부정사

  이사야 — 21회 출현 (전부 동사 BRʾ 1 "창조하다"):
    칼(Qal) 분사:  bōrē(ʾ) — "창조하시는 분" (21회 중 10회 — 신적 칭호)
    칼(Qal) SK 1인칭: bȧrā(ʾ)tī — "내가 창조했다" (신적 자기선언)
    니팔(Niphal) SK:  nibrȧʾū — "창조되었다"

  최초 실행: JSON 검색 2회 + HTML 토큰 상세 ~8회 = 총 ~10회
  전체 반복 시: 0회 (전부 캐시)

3. 통사 구조 비교

"BHt에서 창세기 1:1과 출애굽기 2:1의 통사 구조를 비교해주세요"

단계 1  AI가 bht_syntax_tree (Gen 1:1) 호출 → satz 생략, 모든 문장 자동 반환
단계 2  AI가 bht_syntax_tree (Ex 2:1) 호출 → satz 생략, 모든 문장 자동 반환

결과:

  Gen 1:1 — 2개 문장 (P, PR):
    P:  PV → [PRAEP: b˙, SUB: rē(ʾ)šīt]
    PR: KOORDV → [PV → [PRAEP, ATKV], KONJS → [KONJ, PV → [PRAEP, ATKV]]]

  Ex 2:1 — 2개 문장 (a, b):
    a: KONJV → [KONJ: wa, PK: yilik]
    b: KONJV → [KONJ: wa, PK: yiqqaḥ]

  최초 실행: syntax tree 2회 호출 (각각 내부 해석 포함) = HTML ~6회
  전체 반복 시: 0회 (전부 캐시)

4. 텍스트 비평

"BHt에서 창세기 1장의 텍스트 비평 주석을 확인해주세요"

단계 1  AI가 bht_text_annotations (Gen, 1장) 호출

결과:

  위치            토큰     유형  주석
  ──────────────  ───────  ────  ─────────────────────────────────────────
  Gen 1,7c (3)    kin      TS    6d로서 G에; G에 7c 텍스트 추가
  Gen 1,9b (9)    maqōm   T     G는 miqwǟ, MT는 miqwē-m?
  Gen 1,9d (3)    kin      TS    G에 9e 텍스트 추가
  Gen 1,20c (11)  šamaym   TS    G에 d 텍스트 추가

  유형: TS = 텍스트 확실성 주석, T = 텍스트 이본
  사본: G = 그리스어(70인역), MT = 마소라 본문

  최초 실행: HTML 1회 (장 전체 주석을 한 번에 조회)
  반복 시: 0회 (캐시)

5. 다니엘서 아람어 구간 식별

"BHt에서 다니엘서의 아람어 구간을 식별해주세요"

단계 1  AI가 bht_field_info ("sprache") 호출 → 언어 코드 발견
단계 2  AI가 bht_search (buch=Dan, sprache=fa:f+) 호출 → 아람어 토큰
단계 3  AI가 bht_search (buch=Dan, sprache=fh:f+) 호출 → 히브리어 토큰

결과:

  언어     장               토큰 수
  ───────  ──────────────   ───────────
  히브리어  1:1–2:4a         ~250개
  아람어    2:4b–7:28        ~4,800개
  히브리어  8:1–12:13        ~2,100개

  AI가 잘 알려진 다니엘서의 이중 언어 구조를 언어학 데이터에서
  직접 식별합니다 — 수동 장 조회 없이.

  최초 실행: JSON 자동완성 1회 + JSON 검색 2회 (아람어 + 히브리어) = 총 3회
  반복 시: 0회 (전부 캐시)

도구 참조

도구용도BHt 요청 수
bht_list_books47개 책 목록 (코드와 장 수 포함)0
bht_field_info42개 검색 필드의 유효한 값 조회0–1
bht_search위치 또는 형태론 필터로 토큰 검색0–1
bht_token_detail단일 토큰의 완전한 형태론 분석0–1
bht_syntax_tree단어 수준 통사 트리 (Wortfügungsebene)0–2
bht_sentence_analysis문장 수준 분석 (Satzfügungsebene)0–2
bht_text_annotations장 단위 텍스트 비평 주석0–1

일반적인 워크플로우: bht_search → bht_token_detail(beleg_nr) → bht_syntax_tree

모든 응답에 일일 사용량을 보여주는 quota 필드가 포함됩니다:

{
  "data": [...],
  "quota": {"daily_html_used": 12, "daily_html_limit": 150, "daily_html_remaining": 138}
}

사용 제한

이 도구는 대학 연구 서버에 접근합니다. 내장된 제한이 서버를 보호합니다:

제한값이유
요청 간격초당 1회서버 용량 보호
일일 HTML 요청150건/일토큰 상세, 통사, 문장, 주석 페이지
일일 JSON 요청무제한검색 API는 경량

이 제한은 연구자가 직접 사이트를 탐색하는 수준(보통 하루 25–100 페이지)과 동등합니다. 일일 제한은 자정에 초기화됩니다.

제한에 도달하면 캐시된 데이터는 여전히 완전히 접근 가능합니다 — 새로운 HTML 가져오기만 차단됩니다.


라이선스

코드: MIT

BHt 데이터: CC BY-SA 4.0 (LMU Munich)

Repository

KY
kyuhyunhan

kyuhyunhan/bht-mcp-server

Created

April 10, 2026

Updated

April 13, 2026

Language

Python

Category

AI