QuantaOptima
MCP server that provides cryptographic audit trails for AI agent actions, making every action tamper-evident via HMAC-SHA256 signed hash chains.
README
QuantaOptima
Auditable AI Actions — cryptographic audit trails for AI agent workflows.
QuantaOptima makes every AI agent action tamper-evident. It ships as an MCP server that any LLM agent can call, and as a Python library that any MCP server developer can embed. Every action is HMAC-SHA256 signed and hash-chained — tamper with one step and the entire chain breaks.
pip install quantaoptima
Why This Exists
AI agents are making decisions, writing code, calling APIs, transforming data, and optimizing configurations — but nobody can prove what they did or why. There's no audit trail, no tamper detection, no accountability.
QuantaOptima fixes this with a cryptographic hash chain that logs every action:
quantaoptima_log_action— Log any action with before/after state to the audit chainquantaoptima_verify_chain— Verify the HMAC-SHA256 chain integrityquantaoptima_export_chain— Export the full audit trail as JSONquantaoptima_chain_status— View chain statistics and health
Plus a built-in quantum-inspired optimizer that demonstrates the audit chain in action:
quantaoptima_optimize— Run optimization with every step automatically auditedquantaoptima_explain— Human-readable explanation of what the optimizer didquantaoptima_benchmark— Compare against scipy's classical methods [PRO]quantaoptima_observe— Inspect entropy, interference, phase transitions [PRO]quantaoptima_audit— Verify the optimizer's audit trail [PRO]
What Makes It Different
1. Every Action Is Tamper-Evident
Every logged action produces an HMAC-SHA256 signature chained to the previous action. Tamper with one block and all subsequent signatures break. This matters for regulated industries (pharma, finance, aerospace), scientific reproducibility, and AI governance.
2. Built for AI Agents (MCP-Native)
Ships as an MCP server — your agent can log actions, verify the chain, and export the audit trail through natural language. No integration code needed. Setup takes 30 seconds.
3. Works as a Library Too
Other MCP server developers can embed QuantaOptima's audit chain in their own tools:
from quantaoptima import AuditChain, auditable
chain = AuditChain(scope="my-mcp-server")
# Log actions explicitly
chain.log("query", {"question": "What's the revenue?"}, {"answer": "$4.2M", "source": "db"})
chain.log("decision", {"options": ["A", "B"]}, {"chosen": "A", "reason": "lower risk"})
# Or use the decorator to auto-audit any function
@auditable(chain, action_type="calculation")
def compute_risk(portfolio: dict) -> dict:
return {"risk_score": 0.42}
result = compute_risk({"stocks": ["AAPL", "GOOG"]})
# Verify and export
assert chain.verify()
chain.export_json("audit_trail.json")
4. Built-In Optimizer Demo
The quantum-inspired optimizer shows the audit chain at work. Every optimization step is cryptographically signed, producing a complete provenance record from start to finish. The optimizer features:
- Quantum-inspired Measurement-Collapse Pruner algorithm
- Built-in interpretability: entropy trajectories, interference metrics, phase transitions
- Reliable convergence across 6 benchmark functions up to 100 dimensions
Quick Start
MCP Server (for Claude, GPT, or any MCP-compatible agent)
pip install quantaoptima
quantaoptima-server
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"quantaoptima": {
"command": "quantaoptima-server"
}
}
}
Then ask Claude:
- "Log a decision to the audit chain: I chose option A because it had lower risk."
- "Verify the audit chain and show me the status."
- "Optimize the Rastrigin function in 10 dimensions, then verify the audit trail."
- "Export the full audit chain to audit_trail.json."
Python Library (for MCP server developers)
from quantaoptima import AuditChain
# Create a chain for your server
chain = AuditChain(scope="my-server", actor="my-agent")
# Log any action
chain.log(
action_type="api_call",
state_before={"endpoint": "/users", "method": "GET"},
state_after={"status": 200, "count": 42},
metadata={"duration_ms": 150},
)
# Verify chain integrity
print(chain.verify()) # True
print(chain.summary()) # Stats and health
print(chain.verify_detailed()) # Per-block verification
# Export
chain.export_json("trail.json")
Decorator Pattern
from quantaoptima import AuditChain, auditable
chain = AuditChain(scope="data-pipeline")
@auditable(chain, action_type="transform")
def clean_data(raw: list) -> list:
return [x for x in raw if x is not None]
@auditable(chain, action_type="analysis")
def compute_stats(data: list) -> dict:
return {"mean": sum(data) / len(data), "count": len(data)}
# Both calls are automatically logged to the audit chain
clean = clean_data([1, None, 3, None, 5])
stats = compute_stats(clean)
assert chain.verify()
print(f"Audit trail: {len(chain)} blocks, verified")
Pricing
| Community (Free) | Pro ($29/mo) | Enterprise | |
|---|---|---|---|
| Audit Chain | Unlimited | Unlimited + analytics | Custom |
| Log Actions | ✓ | ✓ | ✓ |
| Verify Chain | ✓ | ✓ | ✓ |
| Export Chain | ✓ | ✓ + formats | ✓ + custom |
| Optimizer Objectives | 3 | All 6 | All + custom |
| Max Dimensions | 10 | 100 | Unlimited |
| Max Iterations | 100 | 5,000 | Unlimited |
| Benchmark vs scipy | — | ✓ | ✓ |
| Observability | — | ✓ | ✓ |
| Support | Community | Priority + SLA | |
| Install Free | Get Pro | Contact |
Annual Pro: $199/year (save 43%)
How the Audit Chain Works
Action 1 Action 2 Action 3
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ action: "query" │ │ action: "decide" │ │ action: "execute"│
│ before: {...} │ │ before: {...} │ │ before: {...} │
│ after: {...} │ │ after: {...} │ │ after: {...} │
│ sig: HMAC( │──chain──│ sig: HMAC( │──chain──│ sig: HMAC( │
│ prev_sig + │ │ prev_sig + │ │ prev_sig + │
│ data │ │ data │ │ data │
│ ) │ │ ) │ │ ) │
└─────────────────┘ └─────────────────┘ └─────────────────┘
Each block's signature depends on the previous block's signature. Change anything in block 1, and the signatures of blocks 2 and 3 become invalid. This is the same principle behind blockchain, applied to AI agent actions.
How the Optimizer Works
The built-in quantum-inspired optimizer runs a loop of four steps:
- Encode — Map population fitness to complex amplitudes via Boltzmann weighting
- Evolve — Apply three quantum-inspired operators: Rotation R(θ), Entanglement E(λ), Scrambling S(γ)
- Collapse — PCA-derived measurement basis + Born rule probabilities + entropy constraint = adaptive selection
- Audit — Every step is HMAC-SHA256 signed and hash-chained
Project Structure
quantaoptima/
├── audit.py # Core: AuditChain, AuditBlock, @auditable decorator
├── core.py # Quantum state encoder + evolution operators
├── mcp_algorithm.py # Measurement-Collapse Pruner
├── optimizer.py # Full optimizer orchestration
├── licensing.py # Freemium license key system
├── server.py # MCP server (10 tools)
Patent Status
US Provisional Patent Application filed May 25, 2025. Covers:
- Cryptographic audit trail for AI agent actions
- Quantum-inspired optimization with measurement collapse
- Entropy-constrained adaptive selection
- Foundation model integration architecture
Citation
@software{hart2025quantaoptima,
author = {Hart, Justin},
title = {QuantaOptima: Auditable AI Actions},
year = {2025},
url = {https://github.com/jdhart81/quantaoptima}
}
License
Apache 2.0 — use it freely, including commercially. The patent covers the specific algorithm implementation; the Apache license grants you a patent license for use of this software.
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。