首页龙虾技能列表 › Pipeworx books — 技能工具

Pipeworx books — 技能工具

v1.0.0

[自动翻译] Search and look up books via Open Library — titles, authors, ISBNs, and cover images from the world's largest open book catalog

0· 52·0 当前·0 累计
by @brucegutman (Bruce Gutman)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/7
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill's requirements and instructions are coherent with a wrapper around the Open Library API; no unexpected secrets or installs are requested, but the skill forwards queries to an external Pipeworx gateway which may see user data and (per the example MCP config) could cause remote code to be fetched at runtime.
评估建议
This skill appears to be a straightforward wrapper for Open Library, but it forwards queries to an external service at gateway.pipeworx.io. Before installing or using it, consider: (1) Do you trust pipeworx.io to receive any user queries or context you send? (2) Avoid sending sensitive data through the skill because the gateway will see it. (3) If you use the MCP config example, note that 'npx mcp-remote@latest' will download and run code from npm at runtime — only run that if you trust the publ...
详细分析 ▾
用途与能力
The name/description (search Open Library) align with the instructions: the pack exposes search_books, get_book, and get_author endpoints and shows curl examples targeting a pipeworx gateway. Required binaries (curl) are appropriate for the provided examples.
指令范围
The SKILL.md instructs the agent to call an external endpoint (https://gateway.pipeworx.io/books/mcp) using JSON-RPC. That matches the stated purpose, but it means user queries and any context sent to the tool will leave the local environment and be visible to the remote gateway. The instructions do not ask the agent to read local files or environment variables.
安装机制
No install spec is included (instruction-only), which is low-risk. The provided MCP config example uses 'npx mcp-remote@latest', which would fetch and run code from npm at runtime if used; this is not part of the skill package but is a noteworthy runtime behavior if you follow that config.
凭证需求
The skill requires no environment variables, credentials, or config paths. There is no disproportionate access requested relative to its purpose.
持久化与权限
The skill does not request 'always: true' or any elevated persistence. It is user-invocable and allows model invocation (the platform default), which is expected for a tool-like skill.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/7

Initial release

● 无害

安装命令 点击复制

官方npx clawhub@latest install pipeworx-books
镜像加速npx clawhub@latest install pipeworx-books --registry https://cn.clawhub-mirror.com

技能文档

Open Library aims to catalog every book ever published. This pack wraps their API to let you search by title, author, or keyword, look up detailed book info by ISBN, and retrieve author biographies.

Tools

  • search_books — Search by title, author, or keywords. Returns up to 20 results with titles, authors, publish years, ISBNs, and cover image URLs.
  • get_book — Full details for a book by ISBN-10 or ISBN-13. Includes description, publishers, page count, and subjects.
  • get_author — Author biography, birth/death dates, and photos by Open Library author key (e.g., OL23919A for J.K. Rowling).

Real-world uses

  • Answering "who wrote that book about..." questions
  • Enriching a reading list with cover images and page counts
  • Looking up an ISBN from a barcode scan to get book metadata
  • Building a book recommendation system with structured author and subject data

Example: finding books by Ursula K. Le Guin

curl -s -X POST https://gateway.pipeworx.io/books/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_books","arguments":{"query":"Ursula Le Guin","limit":5}}}'
{
  "results": [
    {
      "title": "The Left Hand of Darkness",
      "authors": ["Ursula K. Le Guin"],
      "first_publish_year": 1969,
      "isbn": "0441478123",
      "cover_url": "https://covers.openlibrary.org/b/id/..."
    }
  ]
}

MCP config

{
  "mcpServers": {
    "pipeworx-books": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/books/mcp"]
    }
  }
}

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务