← 返回
AI智能 中文

Books For Agents

Access and search a structured open source knowledge base of book summaries optimized for AI agents via the MCP protocol.
访问并搜索一个基于 MCP 协议、为 AI 代理优化的结构化开源书籍摘要知识库。
danpalmieri
AI智能 clawhub v0.1.0 1 版本 99890.9 Key: 无需
★ 0
Stars
📥 916
下载
💾 29
安装
1
版本
#latest

概述

Books for Agents

An open source knowledge base of structured book summaries, available to any AI agent via MCP.

Setup

  1. If you don't have the books-for-agents MCP server installed, add it:
claude mcp add --transport http books-for-agents https://booksforagents.com/mcp

Or add to your MCP config file:

{
  "mcpServers": {
    "books-for-agents": {
      "url": "https://booksforagents.com/mcp"
    }
  }
}
  1. Once connected, you have access to all tools below.

What you can do

Search for books

Use search_books to find books by topic, keyword, or question. Supports hybrid search (full-text + semantic vector embeddings).

search_books({ query: "how to build better habits" })
search_books({ query: "leadership", category: "business" })
search_books({ query: "cognitive biases and decision making", limit: 3 })

Read a book summary

Use get_book to retrieve the full structured summary of a specific book by slug or title (partial match supported).

get_book({ slug: "atomic-habits" })
get_book({ title: "Deep Work" })

Read a specific section

Use get_book_section to retrieve only one section of a book — saves tokens when you don't need the full summary. Available sections: ideas, frameworks, quotes, connections, when-to-use.

get_book_section({ slug: "the-lean-startup", section: "frameworks" })
get_book_section({ slug: "clean-code", section: "quotes" })
get_book_section({ slug: "thinking-fast-and-slow", section: "when-to-use" })

Browse categories

Use list_categories to see all available categories and how many books each one has.

list_categories()

Suggest a new book

Use suggest_book to add a book to the generation backlog. Checks for duplicates against published books and existing backlog entries.

suggest_book({ title: "Thinking in Bets", author: "Annie Duke", category: "psychology" })

See the backlog

Use list_backlog to see all pending books waiting to be generated, along with their status.

list_backlog()

Generate a book summary

Use generate_book to get the template, example, metadata, and instructions needed to generate the next book summary. You can specify a title or let it pick the next pending one.

generate_book()
generate_book({ title: "Never Split the Difference" })

After generating the content, call submit_book to publish it.

Publish a book summary

Use submit_book to publish a generated summary directly to the knowledge base. Call this after generating content with generate_book.

submit_book({
  slug: "never-split-the-difference",
  title: "Never Split the Difference",
  author: "Chris Voss",
  category: "business",
  content: "---\ntitle: \"Never Split the Difference\"\n..."
})

Tips

  • Use get_book_section instead of get_book when you only need one part — it saves significant tokens.
  • Use search_books with natural language queries — the semantic search understands meaning, not just keywords.
  • When generating a book, follow the template and instructions returned by generate_book exactly. All content must be in English.
  • Connections between books use [[slug]] format and must reference existing books only.

版本历史

共 1 个版本

  • v0.1.0 当前
    2026-03-29 12:51 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 838 📥 213,366
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,060 📥 798,779
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 714 📥 244,053