CaskMCP
Turns any web API into a governed, agent-ready MCP server with lockfile-based approval, fail-closed enforcement, and full audit trail.
README
Cask — Governed AI agent tools from real API traffic
<!-- mcp-name: io.github.caskmcp/cask -->
Turn any web API into a governed, agent-ready MCP server. Lockfile-based approval, fail-closed enforcement, self-repairing proposals, and full audit trail. Every tool your AI agent uses is reviewed, signed, and traceable.
<!-- hero-start --> <p align="center"> <img src="docs/assets/hero-comparison.gif" alt="Without Cask vs With Cask — side-by-side comparison" width="100%"> </p> <!-- hero-end -->
The Problem
AI agents need tools. MCP gives them tools. But who governs what those tools can do?
Without governance, agents silently call admin endpoints, charge billing APIs, leak data to third parties, and escalate their own privileges — with no audit trail and no way to detect drift. OpenAI warns about tool-injection risks. Real data exposure incidents are already happening.
Cask is the missing governance layer: local, deterministic, auditable, fail-closed.
See It Work (30 seconds)
pip install caskmcp
cask demo
<p align="center"> <img src="docs/assets/cask-demo.gif" alt="cask demo — real governance proof" width="80%"> </p>
cask demo compiles 8 tools from bundled API traffic, enforces fail-closed lockfile governance, proves deterministic replay parity, and emits evidence artifacts. Exit code 0 means every governance gate held.
Quick Start (5 minutes)
Prerequisites: Python 3.11+
# 1. Initialize cask in your project
cask init
# 2. Capture traffic and compile a governed toolpack
cask mint https://your-app.com -a api.your-app.com
# 3. Review what changed (risk-classified diff)
cask diff --toolpack .caskmcp/toolpacks/*/toolpack.yaml
# 4. Approve tools for use (interactive TUI or CLI)
cask gate allow --all
# 5. Start the governed MCP server
cask serve --toolpack .caskmcp/toolpacks/*/toolpack.yaml
Your AI agent now has governed, auditable access to your API.
How It Works
Capture ─── Compile ─── Review ─── Approve ─── Serve ─── Verify
│ │ │ │ │ │
HAR/OTEL tools.json cask diff lockfile MCP stdio contracts
OpenAPI policy.yaml signatures drift
Browser contracts evidence
WebMCP scopes repair
Capture real traffic (HAR, OpenTelemetry, OpenAPI specs, live browser, or WebMCP discovery).
Compile into deterministic, versioned tool definitions with risk classification and scopes.
Review changes with cask diff — every new tool, schema change, or host addition is risk-classified.
Approve via Ed25519-signed lockfile entries — explicit human decisions, not silent defaults.
Serve through MCP with fail-closed enforcement — unapproved tools never execute.
Verify with contracts, drift detection, and evidence bundles. When things break, cask repair proposes fixes.
What Makes Cask Different
Fail-Closed by Default
No lockfile, no runtime. Period. This isn't a suggestion — it's an architectural invariant. Unapproved tools never execute, and there's no way to bypass it.
Self-Repairing Governance
When agents are denied capabilities, cask repair diagnoses the issue from audit logs, drift reports, and verification failures, then proposes classified fixes:
- SAFE — read-only diagnostics (auto-runnable)
- APPROVAL_REQUIRED — grants new capability (needs human review)
- MANUAL — requires investigation or re-capture
Agents can also propose new capabilities via cask propose — proposals are stored as drafts and only promoted to runtime by explicit human approval.
Interactive TUI
Rich terminal UI for tool review — risk-colored tables, wizard flows, typed confirmation for dangerous operations. Run cask with no arguments for a guided menu.
Agent-Aware Introspection
cask inspect runs a read-only Meta MCP server that exposes governance state as AI-consumable tools. Agents can query what they're allowed to do, check policy, and list pending approvals — making them governance-aware.
Deterministic Replay Parity
Same inputs produce identical artifacts, digests, and tool outputs. This is verified, not aspirational — cask demo proves it in 30 seconds.
Full Audit Trail
Every governance decision (ALLOW, DENY, CONFIRM) is logged with structured traces. Every approval is Ed25519-signed. Every verification run produces an evidence bundle with SHA-256 digests.
Traffic Capture
Start where you already are:
| You have | Command | Best for |
|---|---|---|
| Nothing (just exploring) | cask demo |
Fastest first run, no credentials needed |
| A web app to capture | cask mint https://app.example.com -a api.example.com |
Capturing real authorized behavior |
| HAR/OTEL files | cask capture import traffic.har -a api.example.com |
Adopting Cask without recapturing |
| An OpenAPI spec | cask capture import openapi.yaml -a api.example.com |
Generating tools from specs |
All paths converge to the same governed runtime.
Core Commands
| Command | What it does |
|---|---|
cask init |
Initialize Cask in your project |
cask mint <url> |
Capture traffic and compile a governed toolpack |
cask gate allow/block/check/status |
Approve, block, or audit tools via signed lockfile |
cask serve |
Start the governed MCP server (stdio) |
cask diff |
Generate a risk-classified change report |
cask drift |
Detect API surface changes against a baseline |
cask verify |
Run verification contracts (replay, outcomes, provenance) |
cask repair |
Diagnose issues and propose classified fixes |
cask propose |
Manage agent draft proposals for new capabilities |
cask inspect |
Start read-only Meta MCP for agent introspection |
cask config |
Generate MCP client config (Claude Desktop, Codex) |
cask demo |
Prove governance works (offline, 30 seconds) |
Tip: Run
caskwith no arguments for an interactive guided menu. Usecask --help-allto see all 25+ commands includingcompliance,bundle,enforce,confirm, and more.
Runtime Enforcement
The MCP server enforces multiple safety layers on every tool call:
- Lockfile approval — only explicitly approved tools execute
- Policy evaluation — priority-ordered rules (allow, deny, confirm, budget, audit)
- Rate limiting — per-minute/per-hour budgets with sliding-window tracking
- Network safety — SSRF protection, metadata endpoint blocking, redirect validation
- Confirmation flow — HMAC-signed out-of-band challenge tokens for sensitive operations
- Redaction — strips auth headers, tokens, PII from all captured data by default
- Dry-run mode — evaluate policy without executing upstream calls
Installation
Prerequisites: Python 3.11+
# Base install (includes offline demo)
pip install caskmcp
# With MCP server support
pip install "caskmcp[mcp]"
# With live browser capture
pip install "caskmcp[playwright]"
python -m playwright install chromium
# Everything
pip install "caskmcp[all]"
MCP Client Config
Generate a config snippet for your AI client:
# For Claude Desktop
cask config --toolpack .caskmcp/toolpacks/*/toolpack.yaml --format json
# For Codex
cask config --toolpack .caskmcp/toolpacks/*/toolpack.yaml --format codex
Or add this to your Claude Desktop config (~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"my-api": {
"command": "cask",
"args": ["serve", "--toolpack", "/path/to/toolpack.yaml"]
}
}
}
Documentation
- User Guide — full command reference and workflows
- Architecture — system design and component specs
- Glossary — key terms and concepts
- Troubleshooting — common issues and fixes
- Known Limitations — runtime and capture caveats
- Publishing — PyPI release process
Contributing
See CONTRIBUTING.md for development setup, TDD policy, and pull request process.
git clone https://github.com/caskmcp/CaskMCP.git
cd CaskMCP/cask
pip install -e ".[dev,packaging-test]"
pytest tests/ -v
License
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。