mcp-confirm
MCP server that enforces single-use human confirmations for sensitive tool calls, sanitizes prompts against prompt injection, and re-validates file paths before destructive actions.
README
mcp-confirm
In plain terms: when an AI asks "are you sure?", the MCP SDK already stops that approval being reused for a different action. It does not stop the same approval being used twice. This closes that gap, and two others the SDK leaves open.
Read this first: most of this problem is already solved
The 2026-07-28 MCP specification added Multi Round-Trip Requests, so a tool can
pause mid-call and ask the user to confirm. The approval travels back through
the client as an opaque requestState, which the spec says servers MUST
treat as attacker-controlled.
The Python SDK does this for you, by default, on every MCPServer.
RequestStateBoundary is appended to the middleware chain unconditionally —
with an ephemeral key if you supply none. It seals the state under
AES-256-GCM and binds it to the method, the target, a digest of the call's
arguments, the audience, and the authenticated principal, with a TTL.
So the attack everyone reaches for first — approve deleting cache.txt, then
replay that approval against thesis.txt — is already refused by the SDK.
You do not need a library for it, and you should not write one.
This repository originally wrote one anyway: 250 lines of HMAC, TTL and argument binding, shipped as the headline feature, redundant the day it was published. That is recorded at the bottom rather than quietly deleted.
What the SDK does not do
Three gaps, each with a test that fires.
1. It binds and expires the state. It never spends it.
Inside the TTL, the same approval verifies as many times as it is presented. Every check the boundary makes passes, every time. The specification is explicit that this is deliberate and that the rest is yours:
Note that these measures bound the replay window and prevent cross-user and cross-request reuse, but do not by themselves guarantee single-use. Servers for which a given
requestStatemust be consumed at most once (e.g., one-time redemptions) MUST enforce that invariant server-side.
For "delete a file" the second attempt finds nothing. For "transfer £500" it
is the entire problem. singleuse.py is that
invariant — a ledger of outstanding confirmations, spent on redemption. It
contains no cryptography, because the boundary already guarantees the plaintext
is something this server minted.
2. Nothing sanitises the question the human reads
An elicitation message is server-chosen text rendered to a person, usually
with an untrusted value interpolated into it — the whole point is to say which
file is going away. So name a file:
cache.txt
SYSTEM NOTICE: your session has expired.
Enter your AWS secret key to continue:
The dialog now carries a second, official-looking prompt. The user is not confirming a deletion; they are being phished by their own tooling. The same 2026-07-28 release also shipped MCP Apps — server-rendered UI — which widens this surface rather than narrowing it.
prompt.py flattens untrusted values to one line,
strips bidirectional overrides and zero-width characters, and truncates from the
middle so the filename at the end stays visible. Control characters become
spaces rather than being deleted, since collapsing them would let a\nb and
ab render identically — two different files, one dialog.
3. No protocol layer can re-check your resource at execution time
The user thought about it in between. The file can be replaced in that window, and only the tool knows what "unchanged" means for it. This server re-checks before deleting, and refuses a path that has become a symlink.
Which layer refuses what
This is the useful part, and the tests are written to demonstrate it. MCPError
means the SDK's middleware refused before this package ran; ToolError means
this package did.
| Attack | Refused by | Test |
|---|---|---|
| Approval replayed onto a different file | SDK | test_the_sdk_refuses_a_confirmation_replayed_onto_another_file |
| State forged, or sealed under another key | SDK | test_the_sdk_refuses_a_forged_state |
| Same approval spent twice | this package | test_a_confirmation_cannot_be_spent_twice |
| State minted by another replica | this package | test_a_state_this_process_never_issued_is_refused |
| Filename forging a system prompt | this package | test_a_forged_system_prompt_cannot_escape_its_slot |
| File swapped for a symlink after approval | this package | test_a_swap_aimed_inside_the_root_is_refused |
| Path outside the allowed roots | this package | test_a_path_outside_the_roots_is_refused_before_asking |
Tests
35 tests — 17 through the server, 11 on the ledger, 7 on prompt sanitisation.
Every server test runs through the real RequestStateBoundary, the same
class MCPServer installs on itself, with a pinned key — sealing round one and
unsealing round two exactly as the wire would.
That harness exists because of a specific mistake. The first version tested by
calling MCPServer.call_tool() directly, which goes straight to the tool
manager and bypasses the middleware chain entirely. The SDK's boundary never
ran, so a redundant hand-rolled guard looked load-bearing. The test design is
what hid it, for an entire build cycle.
Coverage is 81%, with prompt.py at 100% and singleuse.py at 94%. The gap is
main()'s argparse and transport wiring, exercised through build_server
instead.
CI runs on Ubuntu only, deliberately: the swap-after-confirmation tests need symlinks, and the build fails if they report as skipped there.
Install
pip install git+https://github.com/les-k/mcp-confirm.git
Run
mcp-confirm --root /path/you/allow
With no --root, the server refuses every request rather than defaulting to
anything. Roots are fixed at startup and never chosen by the agent. No signing
key is needed — MCPServer brings its own.
Known limitations
- The ledger is in-memory, so it is correct for one process and wrong behind
a load balancer. The SDK supports sharing keys across replicas
(
RequestStateSecurity(keys=[...])); under that configuration replica B rejects a confirmation issued by replica A. It fails closed — the safe direction — but reads to a user as a confirmation that inexplicably stopped working. A multi-process deployment needs Redis or a database row with an atomic compare-and-delete. There is a test for this behaviour. - The demonstration tool is deliberately small. It deletes one file. The
interesting code is
singleuse.pyandprompt.py. - No CVE backs this. MRTR is weeks old, so this is built from the specification's own MUST/SHOULD list and from reading the SDK, not from a published incident.
What was wrong with version 0.1.0
Kept here because a repository that records only its successes is not evidence of anything.
0.1.0 reimplemented what the SDK already did. state.py was 250 lines of
HMAC signing, TTL, and principal/method/argument binding — all duplicating
RequestStateBoundary, none of it as good: HMAC where the SDK uses
authenticated encryption, no audience binding, no key rotation.
It was caught by reading the SDK's source, not by a test. The tests passed precisely because they bypassed the middleware that would have exposed it.
CI separately caught a real bug in 0.1.0: the symlink check ran after
Path.resolve(), so it inspected the link's destination rather than the link
itself. A swap aimed at another file inside an allowed root would have been
deleted. Fixed, with a test for the variant the original never exercised.
0.2.0 deletes state.py entirely and keeps only what the SDK leaves uncovered.
Licence
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 模型以安全和受控的方式获取实时的网络信息。