Librarian

Librarian

MCP server enabling AI agents to submit plans and designs for human review, with append-only decision records that store both approvals and rejections, so agents can query past decisions before proposing new changes.

Category
访问服务器

README

📚 Librarian

A decision library for AI agent sessions. Agents submit their plans and architecture docs over MCP; you read them, comment, and green- or red-light them from any device; every verdict — including every rejection — becomes memory that the agents themselves can query before they design anything else.

Rent the conversation. Own the decisions.


The problem

You run five or six agent sessions at once. Each one produces plans, ADRs, and design docs that are buried inside a linear chat transcript. One chat cannot show you many decisions. So:

  • Decision docs scatter across repos and sessions; there is no one place to read them.
  • Sessions sit blocked on approval while you are looking at a different terminal.
  • Approvals get rubber-stamped, because the doc and the approve button live in different places.
  • Rejections vanish. A red light shapes a design as much as a green light does — but nothing records it, so a fresh session cheerfully re-proposes the idea you turned down last week.

What Librarian does

One small daemon on your machine, holding one SQLite file:

  • An MCP server any agent can talk to — Claude Code, Codex, or your own. Agents submit designs and wait for your verdict.
  • A library — every decision, across every project, in one structured view instead of buried in chat.
  • A red-light memory — rejections are first-class records, and agents can query them (get_constraints) before proposing, so you stop re-litigating the same bad idea.
  • A safety net — a watcher reads your agent transcripts and captures decision docs even when the agent forgets to submit one.

Everything stays on your disk. There is no cloud, no account, and no telemetry.

Install

git clone https://github.com/ivankwongtszfung/librarian.git
cd librarian
npm install
npm run build
npm start

Then point an agent at it:

claude mcp add --transport http librarian http://127.0.0.1:7801/mcp

Open http://127.0.0.1:7801 to read the library.

Add this to your agent's instruction file (CLAUDE.md, AGENTS.md) to close the loop:

Before proposing any design or plan, call get_constraints for the project to see what has already been decided and rejected. Before finalizing one, call submit_for_review and poll get_review until it resolves.

The tools an agent gets

Tool When the agent calls it
get_constraints(project, topic?) Before designing. Queryless on purpose — you can't search for a constraint you don't know exists. Returns what was approved and what was rejected, with reasons.
search_decisions(query, …) Mid-design, for a specific question: "has Redis been considered here?" Searches every decision, including rejected ones.
submit_for_review(project, title, doc, …) Before acting on a design. Returns a review_id.
get_review(review_id, wait_seconds) Waits for your verdict (server-side long-poll, ≤50s per call). Resolves to approved, rejected + reason, or changes_requested + your comments.
record_decision(…) Files a decision that needs no approval. Doesn't gate, doesn't notify.

How a decision flows

  1. An agent finishes a design and calls submit_for_review.
  2. It appears in your library as pending, and your phone buzzes (if you set --ntfy).
  3. You read the doc — the whole point — then approve, reject with a reason, or comment and request changes.
  4. The agent's get_review resolves. On changes, it reads your comments, revises, and resubmits with parent_review_id; you get a v1 → v2 diff, so re-reading costs seconds.
  5. The verdict is recorded forever, comments and all. The thread is the decision's rationale.
  6. The next agent that calls get_constraints sees it — including the red light.

Design notes

A rejection must carry a reason. The API refuses a red light without one (422), and so does the database. A rejection that doesn't say why isn't a decision, it's a shrug.

Verdicts are append-only. rejected → revised → approved is the shape of a real decision record, and none of it is ever overwritten. That chain is exactly the "alternatives considered" section nobody writes by hand.

The long-poll cannot lose a verdict. get_review is an idempotent read reconstructed from committed rows. A dropped connection, a re-poll, or a daemon restart all return the same answer — losing the connection costs latency, never a decision.

One decision is one thread. A revision adds a version to the same decision; it does not mint a new one. Doc, comments, and verdict history stay together.

Options

librarian [options]

  --port <n>        HTTP port (default 7801)
  --host <addr>     bind address (default 127.0.0.1)
  --db <path>       SQLite file (default ~/.librarian/librarian.db)
  --token <secret>  require a bearer token on /api
  --ntfy <url>      ntfy topic URL for push notifications
  --watch [dir]     auto-capture from agent transcripts (default ~/.claude/projects)
  --no-watch        disable transcript capture

Reading from your phone. The daemon binds to localhost by default. To reach it from a phone, run it behind Tailscale (--host 0.0.0.0 --token <secret>) and open the tailnet address. The auth layer is transport-agnostic on purpose — a bearer token is what authorizes a request, not the interface it arrived on — so LAN, Tailscale, or a future relay are interchangeable.

Development

npm run dev      # watch mode
npm test         # unit tests (vitest)
npm run bdd      # acceptance scenarios (cucumber)
npm run check    # lint + typecheck + all tests

The .feature files under tests/features/ are the acceptance criteria, not decoration — they drive a real daemon over real HTTP with a real MCP client.

Status

Phase 1. The review loop works end to end; the library is browsable; the watcher captures decisions from Claude Code transcripts.

Not built yet: the reviewer panel (role-scoped agents that pre-review each doc — the "librarian" consistency checker is the interesting one), context verification against the local repo, the native iOS app, and a chat surface for notifications.

Licence

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选