cronozen-proof
Tamper-proof audit trail for AI decisions. 6 tools to record, verify, and export cryptographic proof chains via MCP.
README
@cronozen/mcp-server
Tamper-proof audit trail for AI decisions. Record, verify, and export cryptographic proof chains via MCP.
Overview
This MCP server exposes 6 tools for AI decision provenance — recording decisions, verifying cryptographic integrity, and exporting audit-ready evidence. AI clients such as Claude Desktop connect over Streamable HTTP transport and interact with decision proofs through a standard MCP interface.
- Transport: Streamable HTTP (not SSE, not stdio)
- Session model: Stateful per-session transport with UUID session IDs
- Auth forwarding: Per-request Bearer token is forwarded to the underlying API
Tools
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
proof_record |
Records an AI execution as a DPU. Creates a cryptographically chained proof record with SHA-256 hash chain. | domain (string), purpose (string), final_action (string) |
evidence_level (DRAFT | PARTIAL | AUDIT_READY), reviewed_by, reviewer_role, approved (boolean), tags (string[]), reference_type, reference_id |
proof_verify |
Verifies a specific proof record's cryptographic integrity. Checks hash consistency. | proofId (string) |
data (Record<string, unknown>) |
proof_chain_verify |
Verifies the entire SHA-256 hash chain for a domain. Reports the first broken index if tampering is detected. | domain (string) |
fromIndex (number), toIndex (number), batchSize (number) |
proof_get |
Retrieves a DPU by ID with full details including hash chain position, evidence level, and compliance info. | id (string) |
-- |
proof_export_jsonld |
Exports a DPU as a JSON-LD v2.0 document conforming to Cronozen Evidence Ontology. Includes 6W extraction and policy snapshot. | id (string) |
-- |
proof_public_verify |
Publicly verifies a DPU's cryptographic integrity without authentication. Checks hash validity and chain link integrity. | id (string) |
-- |
Quick Start
Install via Smithery (Recommended)
smithery mcp add cronozen/proof
Or connect directly: https://proof.cronozen.com
Self-hosted
Prerequisites
- Node.js 18+
- A running Cronozen API endpoint
Install
npm install
Configure
cp .env.example .env
Edit .env and set CRONOZEN_API_TOKEN to a valid JWT token.
Development
npm run dev
Production
npm run build
npm start
Docker
docker build -t cronozen-mcp-server .
docker run -p 3100:3100 \
-e CRONOZEN_API_URL=https://mcp.cronozen.com \
-e CRONOZEN_API_TOKEN=your-token \
cronozen-mcp-server
Environment Variables
| Variable | Description | Default |
|---|---|---|
CRONOZEN_API_URL |
Base URL of the Cronozen API | http://localhost:3000 |
CRONOZEN_API_TOKEN |
JWT Bearer token for API authentication | (none -- required) |
MCP_PORT |
Port the MCP server listens on | 3100 |
Claude Desktop Configuration
{
"mcpServers": {
"cronozen-proof": {
"url": "https://mcp.cronozen.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_JWT_TOKEN"
}
}
}
}
Health Check
GET /health
{
"status": "ok",
"server": "cronozen-decision-proof",
"version": "0.1.0",
"tools": 6,
"transport": "streamable-http",
"activeSessions": 0
}
Authentication
The server supports two authentication modes:
- Per-session Bearer token — Clients send an
Authorization: Bearer <token>header on the initial MCP request. The token is forwarded to all subsequent API calls for that session. - Fallback to environment variable — If no Bearer token is provided in the request, the server uses the
CRONOZEN_API_TOKENenvironment variable.
The proof_public_verify tool calls the public verification endpoint which does not require authentication.
How It Works
Claude Desktop / AI Client
| HTTPS + Bearer token
v
Cronozen MCP Server (Streamable HTTP)
| HTTP + Bearer forwarding
v
Cronozen Decision Proof API
| SHA-256 hash chain
v
Tamper-proof Evidence Store
Every AI decision is:
- Recorded with structured metadata (domain, purpose, action, evidence level)
- Chained via SHA-256 hash linking to the previous record
- Verifiable — any record or entire chain can be cryptographically verified
- Exportable as JSON-LD v2.0 for audit compliance
Use Cases
- AI Agent Audit Trail — Track every decision an AI agent makes in production
- Compliance Documentation — Auto-generate tamper-proof evidence for SOC2, EU AI Act, Korea AI Basic Act
- Decision Provenance — Answer "why did the AI do this?" with cryptographic proof
- Human-in-the-Loop Evidence — Record human approval/rejection alongside AI decisions
License
Apache-2.0
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。