boris-mcp
A public MCP server about Boris Churzin's builds, decisions, and ops doctrine, allowing agents to interrogate his judgment instead of parsing a PDF.
README
boris-mcp
A public MCP server about Boris Churzin (essl) — what he builds, how he decides, and the ops doctrine he runs on. Point an agent at it and interrogate the judgment instead of parsing a PDF.
uvx boris-mcp
Or in an MCP client config:
{
"mcpServers": {
"boris": { "command": "uvx", "args": ["boris-mcp"] }
}
}
A taste
On always-on systems (design_decisions("dumb-evaluator")):
An always-on process is the one that runs when you are asleep and cannot supervise it. Every capability you give it is a capability that acts unsupervised. So the always-on half evaluates predicates and sends alerts; all judgment lives in the supervised half, which compiles rules for it.
On tracking work (doctrine("ack-is-not-answer")):
An acknowledgment is not an answer, and may be a disguised blocker. Auto-replies arrive in seconds and mean nothing happened.
That's the whole idea: ask the questions, get the reasoning. The rest is how the server serves it safely — which turns out to be the same discipline the answers are about.
Tools
Nine tools are public — no auth required, callable over stdio (uvx boris-mcp) or anonymously
over HTTP:
| Tool | What it gives you |
|---|---|
about() |
Who, what, and the shape of the rest |
guide() |
What you can do here, and what to do next |
whoami() |
Who the server thinks you are, and what that gets you |
whats_new(since) |
What's shipped since a cursor you keep — poll this at session start |
projects() |
Systems built — and what's architecturally notable about each |
design_decisions(topic) |
How things were actually decided, and why |
doctrine(rule) |
Personal-ops rules, each with the failure it prevents |
stack() |
Languages, patterns, engineering discipline |
contact() |
How to reach him |
Beyond these, eight more tools exist behind authentication and the circles-of-trust gate: a
headhunter-tier pair (send_message, my_messages) for leaving the owner a message and
checking for a reply, and an owner-tier set (inbox, reply, grant, revoke,
access_requests, activity) for reading and answering the mailbox and managing who's let
in. See Circles, auth, and the mailbox below.
Public tools are read-only over a public corpus. The consent-carrying set above mutates
access or mailbox state — but only because the caller has already been proven to be the
owner (or, for send_message, an authenticated non-anonymous caller) by a fail-closed gate:
an unmapped or unauthenticated caller resolves to the public tier and nothing more, by
construction, not by policy. Content above the commit boundary — the private corpus — lives
off-repo on the operator's own disk and is served only through that same gate.
Circles, auth, and the mailbox
Access is a ladder of circles, outer to inner, each one trusted with strictly more than the last; a caller sees content gated at or below its own resolved circle and nothing above it — not even that a deeper circle exists.
flowchart LR
A["agent / caller"] -->|"stdio (uvx): offline, no auth"| P["public tier"]
A -->|"HTTP: OAuth via Authelia"| RC["resolve circle<br/>(a signed claim can only<br/>lower trust, never raise)"]
P --> G{"circle gate<br/>fail-closed"}
RC --> G
G -->|"at / below your circle"| C["public corpus in-repo<br/>+ private corpus off-repo"]
G -->|"above your circle"| D["honest denial<br/>(logged to activity)"]
C --> M["mailbox & event log<br/>pull + cursor, no push"]
public is the anonymous default; everything at or above the commit boundary lives only in a
private corpus file on the operator's own disk, never in this repo. The stdio path
(uvx boris-mcp) always resolves to public. Over HTTP, a caller authenticates via OAuth
against an Authelia instance the operator runs, and the server clamps whatever circle the
token claims to what an explicit grant actually gives it — a signed claim can lower your
trust, never raise it. Forget to label a piece of content and it fails closed to owner
(the top of the ladder), hidden from everyone but the operator.
Full picture: docs/ATP.md is the acceptance-test checklist behind every locked decision (published for transparency; it reads like internal QA scaffolding, because it is), and deploy/README.md runs the HTTP + Authelia stack yourself.
The message-passing here is the reference implementation of MCPP — the Model Context
Peering Protocol (docs/MCPP.md), a formal MCP extension (SEP-style) for
agent-to-agent messaging: MCP servers peer with each other the way SMTP MTAs do, with
pull-based delivery and a trust ladder. MCPP is to MCP what SMTP is to TCP — an application
protocol over a transport that already exists. The mailbox tools
(send_message/inbox/reply/my_messages) are what's built and running today;
docs/MESSAGES.md is the implementation-level walkthrough. The spec also
defines a consent-gated ask operation — an agent drafts an answer only from what the
asker is already cleared to see, and a human discloses it — which is specified but not yet
implemented here.
Subscribing
There is no push, and that is deliberate. Call whats_new() at the start of a session; it
returns everything after your cursor and hands you a fresh one. There's also an
Atom feed for anything that isn't an agent.
Short version of why: MCP notifications are session-scoped and non-durable, a stdio server has no inbound network path, and the clients that matter don't implement subscriptions anyway — so push would drop any event fired while you had no session open, which is most of them. A cursor makes polling exact. The long version has the spec citations.
Using this for yourself
The reusable half lives in src/boris_mcp/_engine/ — the event log
with cursor semantics, and Atom feed generation. It knows nothing about me: a test walks its
import graph and scans its code for personal nouns, so it stays extractable
(tests/test_engine_boundary.py).
The tool surface deliberately isn't abstracted. about() / projects() /
design_decisions() is a good convention and a bad framework — a photographer wants a
portfolio, a writer wants a bibliography. Abstract the plumbing, template the surface.
Today that means: fork this, replace content.py and events.json, keep _engine/.
It'll be extracted as an installable package when someone actually wants that — see docs/GENERIC-SPLIT.md for the full split and why the repo keeps a personal name while the engine won't.
ops-lint
Two linter families for personal-ops text, both built and tested in
_engine/opslint/. leak is a deterministic pre-publish
check for anyone running a public server like this one — because the dangerous part of
publishing a personal MCP isn't the code, it's the day you paraphrase something you
shouldn't — and it's already wired in as scripts/leak_check.py,
run by hand before every push. hygiene flags outbound items with no follow-up date,
acknowledgments recorded as answers, statuses older than their own chase dates, and
prepared-but-unsent work; the engine and its tests exist, but it isn't exposed as a callable
MCP tool yet — that's what's coming.
Contributing
This repo is a personal instance, not a framework. The instance layer (content.py,
events.json, the tool surface) is meant to be forked, not contributed to — see
CONTRIBUTING.md. Genuine bug reports against the generic engine
(_engine/) are welcome.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。