{
"mcpServers": {
"fhl-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
FHL Bible MCP Server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 100 days ago. 11 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for FHL MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for accessing the Faith, Hope, Love (信望愛站) Bible API.
FHL Bible MCP Server 是一個基於 Model Context Protocol 的伺服器,整合了信望愛站提供的豐富聖經資源 API。透過此 MCP Server,AI 助手(如 Claude)可以直接查詢聖經經文、原文字彙分析、註釋書、主題查經等專業研經資源。
✅ v0.1.2 最新版本 (2025-11-05)
所有已知問題已修復完成(7/7, 100%),包括書卷映射錯誤、Strong's 字典功能增強等。系統功能完整且穩定。
📋 查看完整修復報告 | 📝 更新日誌
使用自動化安裝腳本,快速完成環境配置:
# 1. 下載專案
git clone https://github.com/ytssamuel/FHL_MCP_SERVER.git
cd FHL_MCP_SERVER
# 2. 執行一鍵安裝
# Windows:
.\scripts\install.bat
# macOS/Linux:
chmod +x scripts/install.sh
bash scripts/install.sh
# 3. 生成配置(互動式)
python scripts/generate_config.py
腳本功能:
下載專案
git clone https://github.com/ytssamuel/FHL_MCP_SERVER.git
cd FHL_MCP_SERVER
安裝依賴
# Windows
python -m venv venv
.\venv\Scripts\activate
pip install -e .
# macOS/Linux
python3 -m venv venv
source venv/bin/activate
pip install -e .
配置 AI 助手
使用自動生成腳本(推薦):
python scripts/generate_config.py
或選擇您偏好的 AI 助手手動添加配置:
編輯配置文件(%APPDATA%\Claude\claude_desktop_config.json on Windows 或 ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
Windows:
{
"mcpServers": {
"fhl-bible": {
"command": "C:\\path\\to\\FHL_MCP_SERVER\\venv\\Scripts\\python.exe",
"args": ["-m", "fhl_bible_mcp"],
"env": {
"PYTHONPATH": "C:\\path\\to\\FHL_MCP_SERVER\\src",
"LOG_LEVEL": "INFO",
"FHL_CACHE_DIR": "C:\\path\\to\\FHL_MCP_SERVER\\.cache"
}
}
}
}
macOS/Linux:
{
"mcpServers": {
"fhl-bible": {
"command": "/path/to/FHL_MCP_SERVER/venv/bin/python",
"args": ["-m", "fhl_bible_mcp"],
"env": {
"PYTHONPATH": "/path/to/FHL_MCP_SERVER/src",
"LOG_LEVEL": "INFO",
"FHL_CACHE_DIR": "/path/to/FHL_MCP_SERVER/.cache"
}
}
}
}
⚠️ 重要: 必須使用虛擬環境中的 Python 執行檔(
venv/bin/python或venv/Scripts/python.exe),而非系統的 Python!
編輯 VS Code 設定(settings.json):
Windows:
{
"github.copilot.chat.mcp.enabled": true,
"github.copilot.chat.mcp.servers": {
"fhl-bible": {
"command": "C:\\path\\to\\FHL_MCP_SERVER\\venv\\Scripts\\python.exe",
"args": ["-m", "fhl_bible_mcp"],
"env": {
"PYTHONPATH": "C:\\path\\to\\FHL_MCP_SERVER\\src",
"LOG_LEVEL": "INFO",
"FHL_CACHE_DIR": "C:\\path\\to\\FHL_MCP_SERVER\\.cache"
}
}
}
}
**ma