技能详情(站内镜像,无评论)
作者:Abraham Perl @abeperl
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 55 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:abeperl/sefaria-mcp
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill description and tools match a Sefaria MCP adapter, but the runtime instructions rely on npm/npx to fetch and run external code while the skill metadata does not declare that dependency — downloading and executing an npm package introduces moderate risk and the manifest is incomplete.
目的
Name, description, and listed tools align with a Sefaria MCP server adapter; asking the agent to run the sefaria-mcp-server package is coherent with the stated purpose. However, the skill metadata did not declare required binaries (npm/npx), which is an omission and reduces transparency.
说明范围
SKILL.md instructs running 'npm install -g' or 'npx sefaria-mcp-server' and adding an MCP config that runs npx. Those instructions will download and execute third-party code at runtime — the instructions do not provide any safety guidance (no pinned version, no verification, no instructions to inspect code) and the manifest gives no indication that the agent will invoke package managers.
安装机制
There is no install spec in the manifest, but runtime instructions rely on npm/npx to fetch a package from the public npm registry. Installing/executing an npm package (via npx or global install) is a moderate-to-high risk action because packages can contain install or postinstall scripts and arbitrary code; mitigating details (source verification, pinned versions) are absent though a GitHub repo and npm link are provided.
证书
The skill does not request environment variables, credentials, or config paths beyond instructing to modify the MCP config (which is appropriate). There are no unexplained secrets or unrelated credential requests.
持久
always is false and model invocation is allowed (platform default). The skill asks to add an MCP server entry to the agent's MCP config — this is expected behavior for an adapter and does not appear to modify unrelated skills or system-wide settings.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Sefaria MCP Server」。简介:Access Jewish texts, commentaries, and daily study materials from Torah, Talmud…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/abeperl/sefaria-mcp/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# Sefaria MCP Server
Access Jewish texts (Torah, Talmud, Mishnah, Midrash, Commentaries) via MCP.
## Installation
```bash
npm install -g sefaria-mcp-server
```
Or run directly:
```bash
npx sefaria-mcp-server
```
## Configuration
Add to your MCP config:
```json
{
"mcpServers": {
"sefaria": {
"command": "npx",
"args": ["-y", "sefaria-mcp-server"]
}
}
}
```
## Tools
| Tool | Description |
|------|-------------|
| `get_text` | Get text by reference (Genesis 1:1, Berakhot 2a, etc.) |
| `search` | Full-text search across all texts |
| `get_links` | Get commentaries and cross-references |
| `get_parsha` | Get this week's Torah portion |
| `get_calendars` | Daily learning (Daf Yomi, Rambam, etc.) |
| `get_book_info` | Book metadata and structure |
| `get_related` | Related topics and source sheets |
## Examples
- "What does Genesis 1:1 say? Show me the Hebrew and commentaries."
- "Search for texts about loving your neighbor"
- "What's this week's parsha?"
- "What's today's Daf Yomi?"
## Credits
- Powered by [Sefaria](https://www.sefaria.org)
- npm: [sefaria-mcp-server](https://www.npmjs.com/package/sefaria-mcp-server)
- GitHub: [abeperl/sefaria-mcp-server](https://github.com/abeperl/sefaria-mcp-server)