break-clause-analyzer
Analyzes UK commercial lease break clauses by extracting clause text, checking four conditions (notice, arrears, vacant possession), and assessing validity with grounded citations and human-verify gates.
README
UK Break Clause Analyzer (MCP)
A self-evaluating MCP server that assesses whether a UK commercial-lease tenant break clause can actually be exercised — and publishes its own measured hallucination rate.
⚖️ Decision-support only — NOT legal advice. Built on a deliberately simplified, non-proprietary ruleset over synthetic data. A qualified solicitor must verify any real decision.
The £2m full stop
In 2012, a tenant served a valid break notice to walk away from a lease — but on the break date they hadn't paid one quarter's rent that had fallen due a few weeks earlier. The break failed. They were bound to the lease (and its rent) for years. No drama, no bad faith — just one unmet condition precedent that everyone missed until it was too late.
Break clauses are unforgiving like that. Whether a tenant can actually leave turns on a short checklist — notice served in time, notice served correctly, no rent arrears, vacant possession given — and getting any one wrong is catastrophic. It is exactly the kind of task you might hand to an LLM... if you could trust it not to confidently invent the answer.
This project is about earning that trust, and measuring it. It is not a clever parser. It is a reliability harness: every claim is grounded to verbatim source text or it isn't made, genuinely-ambiguous cases are routed to a human instead of guessed, and the whole thing ships with an eval that publishes how often it lies.
The edge
- Grounded — every asserted condition is backed by a verbatim source span. If
the system can't find the text, it returns
NOT_FOUND; it never invents a quote. A deterministic gate slices the span out of the source, so it can't echo hallucinated text. - Calibrated — when the lease genuinely doesn't settle a point, the answer is
AMBIGUOUS — human verify, not a coin-flip. Abstaining honestly is a feature. - Self-evaluating — a pytest harness scores extraction accuracy, citation faithfulness, hallucination rate, and calibration against 24 labelled cases.
- Reasons + verifies — the LLM only proposes; deterministic code disposes (grounds every quote, does the date arithmetic, applies the vacant-possession legal test, aggregates the verdict).
The headline number
See report/report.md for the full eval (all four metrics,
per-model comparison, confusion matrix, caught-hallucination examples).
The committed report is the heuristic baseline (it runs with no API key) — and it already tells the core story: the grounding gate drives ungrounded (fabricated) hallucinations to zero, while a non-reasoning baseline still misgrounds and never abstains on the genuinely-ambiguous cases. That gap is exactly what a calibrated LLM is meant to close:
uv run python scripts/run_eval.py --record # measure claude-haiku-4-5 vs claude-sonnet-4-6
How it works
flowchart LR
A["Lease + Background Facts"] --> T["MCP tools"]
T --> L["LLM adapter<br/>extract + reason · temperature 0"]
L -- "proposes verbatim quotes<br/>+ findings" --> G{"Grounding gate<br/>verbatim? else NOT_FOUND"}
G -- "spans sliced from source" --> C["Deterministic core<br/>checklist · UK date math · VP legal test"]
C --> R["Strict-precedence aggregate<br/>fail→INVALID · uncertain→AMBIGUOUS · else VALID"]
R --> O["Assessment<br/>verdict + calibration + human-verify gates"]
subgraph EVAL["Eval (the point)"]
D["24 labelled cases"] --> H["harness"] --> M["4 metrics"] --> P["report.md + SVG"]
end
The trust boundary is structural: the deterministic core/ package physically
cannot import the llm/ package (enforced by a test). "The LLM proposes,
deterministic code disposes" is a property of the codebase, not a discipline.
The four MCP tools (each does one thing)
| Tool | What it does |
|---|---|
extract_break_clause |
Returns the break clause + its verbatim source span |
check_conditions |
The four-condition checklist: each pass / fail / uncertain, with grounded evidence |
find_citation |
Exact verbatim supporting text for a claim, or NOT_FOUND |
assess_validity |
Orchestrated verdict + calibration note + mandatory human-verify gates |
Quickstart (clone to running in under 2 minutes)
# 1. Install uv (skip if you have it)
curl -LsSf https://astral.sh/uv/install.sh | sh
# 2. Install deps (uv fetches its own Python 3.12)
uv sync
# 3. Run the test suite — proves the eval apparatus is correct
uv run pytest -q
# 4. Check the dataset (every gold span verbatim, every label coherent)
uv run python scripts/validate_dataset.py
# 5. Regenerate the eval report
uv run python scripts/run_eval.py # heuristic baseline, no key needed
No ANTHROPIC_API_KEY is required for any of the above — the eval falls back to the
heuristic baseline and is fully reproducible. Set the key (and --record) to
measure the real Claude models.
Your Anthropic API key
The key is only needed for live LLM extraction (the eval --record step and the
server's real mode). Everything else runs without one.
- Never commit it.
.envis git-ignored and the cassettes redact thex-api-keyheader. - For local commands, either export it or use a
.envfile:export ANTHROPIC_API_KEY=sk-ant-… # option 1: shell # or cp .env.example .env && $EDITOR .env # option 2: .env, then: uv run --env-file .env python scripts/run_eval.py --record - For an MCP client, put it in the server config's
envblock (below).
Run the MCP server
# Inspect it interactively (the official MCP Inspector)
npx @modelcontextprotocol/inspector uv run break-clause-analyzer
Claude Desktop — add to claude_desktop_config.json (use the absolute path to
your clone so it runs from the project):
{
"mcpServers": {
"break-clause-analyzer": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/rubo-mcp", "break-clause-analyzer"],
"env": { "ANTHROPIC_API_KEY": "sk-ant-…" }
}
}
}
Claude Code — one command:
claude mcp add break-clause-analyzer -e ANTHROPIC_API_KEY=sk-ant-… \
-- uv run --directory /absolute/path/to/rubo-mcp break-clause-analyzer
Without a key the server still runs and responds — it uses the heuristic baseline and says so. Every tool response carries the decision-support disclaimer.
Reproducible evals (cassettes)
temperature=0 is not a determinism guarantee from the API, so reproducibility
comes from recorded cassettes (VCR.py). scripts/run_eval.py --record records one
cassette set per model with the x-api-key header redacted; re-running without
--record replays them with no key in seconds. See
eval/cassettes/README.md.
Layout
src/break_clause_analyzer/
core/ # deterministic trust boundary (no network; cannot import llm/)
grounding.py dates.py checklist.py aggregate.py
llm/ # the only network egress (Anthropic + heuristic fallback)
pipeline.py # propose → gate → dispose orchestration
server.py # FastMCP server: the four tools
data/cases/ # 24 labelled synthetic case files (+ dataset README)
eval/ # harness, metrics, report generator, cassettes
docs/METHODOLOGY.md # pre-registered metric definitions
report/ # generated eval report + SVG
.planning/ # the eval-first roadmap, requirements, and decision log
Methodology & honesty
The metric definitions are pre-registered in
docs/METHODOLOGY.md before any model is run, so the
headline number can't be defined after the fact to look good. The hallucination
rate counts misgrounding and overconfidence — not just fabrication — precisely
because a grounding gate makes fabrication trivially zero. The scorer uses no LLM
judge; it is validated against a gold oracle and deliberately-broken systems in
tests/test_harness.py.
Scope (deliberately narrow)
Tenant break clauses only · four conditions precedent · synthetic/public data only · decision-support, not legal advice. Other lease provisions, landlord breaks, real client data, and a production engine are explicitly out of scope.
Built as a reliability-engineering artifact. The eval is the point.
<!-- mcp-name: io.github.Ankur-stockheads/rubo-mcp -->
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。