EVIDIQ Circuit MCP
Verifiable API proxy and circuit breaker guard for autonomous agents, offering TLS attestation, payload schema inspection, circuit breaker enforcement, webhook signature verification, and 0G-anchored receipt attestation.
README
<p align="center"> <img src="./logo.png" alt="EVIDIQ Circuit" width="160" /> </p>
<p align="center"> <h1 align="center">EVIDIQ Circuit</h1> </p>
<p align="center"><strong>Verifiable API Proxy, TLS Attestation & Circuit Breaker Guard</strong></p>
<p align="center"> Verifiable API proxy, TLS certificate attestation, payload schema drift inspection, circuit breaker state machine enforcement, webhook signature verification, and 0G storage receipt anchoring for autonomous AI agents. </p>
<p align="center"> <a href="https://evidiq.dev">evidiq.dev</a> · <a href="https://evidiq.dev/docs/circuit">Circuit Docs</a> · <a href="https://mcp.evidiq.dev/circuit/skill.md">Agent Skill</a> · <a href="https://github.com/evidiq/evidiq">EVIDIQ Main</a> · <a href="https://github.com/evidiq/evidiq-circuit-mcp">Circuit MCP</a> </p>
<p align="center"> <a href="https://mcp.evidiq.dev/circuit/mcp"><img src="https://img.shields.io/badge/MCP%20Server-Active-3CCF4E?style=flat-square" alt="MCP Server active" /></a> <a href="https://evidiq.dev/docs/circuit"><img src="https://img.shields.io/badge/Audits-TLS%20%2B%20Schema%20%2B%20Breaker%20%2B%20Webhook-0284C7?style=flat-square" alt="Audits TLS + Schema + Breaker + Webhook" /></a> <a href="https://www.oklink.com/xlayer"><img src="https://img.shields.io/badge/X%20Layer-USDT0-3CCF4E?style=flat-square" alt="X Layer USDT0" /></a> <a href="https://mcp.evidiq.dev/circuit/x402"><img src="https://img.shields.io/badge/x402-0.005%E2%80%930.03%20USDT0-2563EB?style=flat-square" alt="x402: 0.005 to 0.03 USDT0" /></a> <a href="https://web3.okx.com/onchainos/dev-docs/payments/service-seller-sdk"><img src="https://img.shields.io/badge/Payments-Official%20OKX%20SDK-121212?style=flat-square&logo=okx&logoColor=white" alt="Official OKX Payment SDK" /></a> <a href="https://www.okx.ai/agents/10377"><img src="https://img.shields.io/badge/OKX.AI-Agent%20%2310377%20Under%20Review-121212?style=flat-square&logo=okx&logoColor=white" alt="OKX.AI Agent 10377 listed" /></a> <a href="./LICENSE"><img src="https://img.shields.io/badge/License-MIT-3DA639?style=flat-square" alt="License: MIT" /></a> </p>
External API dependencies and webhook interactions represent critical single-points-of-failure for autonomous agent systems. An unannounced API schema update, silent SSL certificate expiration, unexpected HTTP 5xx error surge, or forged incoming webhook can compromise agent state and trigger runaway execution budgets.
EVIDIQ Circuit is the verifiable API proxy and circuit breaker gate for autonomous agents.
Pass it outbound API endpoint targets, payload responses, circuit threshold rules, or incoming webhook signatures. It executes a 9-step evaluation pipeline — validating TLS certificate compliance, schema structural drift, circuit breaker state machine status (CLOSED, HALF_OPEN, OPEN), HMAC/EIP-191 webhook signatures, and generating 0G-anchored EIP-191 attestations.
Launch status: live endpoint. The MCP server is deployed at
https://mcp.evidiq.dev/circuit/mcp, paid calls settle through the official OKX Payment SDK, and the OKX.AI listing (Agent #10377) is submitted and under review.
Circuit proxy operations are non-custodial and cryptographically signed.
What it does
- TLS Certificate & SLA Compliance Attestation — Audits TLS certificate validity, expiration date, untrusted CAs, SAN hostname matching, latency SLAs, and security headers.
- Schema Drift & Data Type Inspection — Validates API response JSON payloads against baseline JSON Schema specifications to detect structural breaking changes and data type mutation.
- Circuit Breaker State Machine Engine — Enforces a 3-state deterministic circuit breaker (
CLOSEDhealthy,HALF_OPENtrial,OPENtripped) tracking request error rates, latency P95 spikes, and request velocity bounds. - Webhook Signature Cryptographic Verification — Verifies HMAC-SHA256 or EIP-191 signatures on agent webhooks, enforcing timestamp freshness windows to block replay attacks.
- Canonical Attestation & 0G Storage Anchoring — Binds the evaluation findings into an RFC 8785 (JCS) SHA-256 report digest signed via EIP-191 ECDSA and anchors Merkle roots on 0G Storage.
- Deterministic Verdict Precedence — Enforces explicit verdict rules:
BLOCK>WARN>ALLOW. - Pay per check — Five paid tools at
0.005–0.03 USDT0; five preflight and verification tools are free.
Route to Circuit when
Use Circuit before invoking third-party APIs or trusting incoming agent webhooks: before routing funds to external API endpoints, before trusting structured webhook payloads, or when managing resilience across distributed multi-agent workflows.
A natural chain: validate_request_params → audit_endpoint_compliance / inspect_payload_schema → enforce_circuit_breaker → attest_exchange_receipt → append_record (Vault).
Use it from any agent
# Read the public Skill document
curl -s https://mcp.evidiq.dev/circuit/skill.md
# Inspect current x402 pricing discovery
curl -s https://mcp.evidiq.dev/circuit/x402
# Connect remote MCP server (OpenClaw)
openclaw mcp add evidiq-circuit --transport streamable-http --url https://mcp.evidiq.dev/circuit/mcp
# Connect remote MCP server (Claude Code)
claude mcp add --transport http evidiq-circuit https://mcp.evidiq.dev/circuit/mcp
Public endpoints:
| Endpoint | Purpose |
|---|---|
https://mcp.evidiq.dev/circuit/mcp |
Remote Streamable HTTP MCP transport |
https://mcp.evidiq.dev/circuit/skill.md |
Agent-readable usage and safety guide |
https://mcp.evidiq.dev/circuit/x402 |
x402 v2 pricing and payment discovery |
https://mcp.evidiq.dev/circuit/health |
Service health & payment gate status |
https://evidiq.dev/docs/circuit |
Technical documentation |
MCP tools & Verified On-Chain Proofs
Paid analysis & attestations
| Tool | Cost | Atomic | Description | Verified Settle Tx (OKLink) |
|---|---|---|---|---|
audit_endpoint_compliance |
0.005 USDT0 |
5000 |
Audit outbound API endpoint: TLS certificate validity, expiration, SLA, and security headers | 0xcef0df...fbb8 |
inspect_payload_schema |
0.01 USDT0 |
10000 |
Validate API response JSON payload against JSON Schema to detect data poisoning or type drift | 0xea7c8c...aede |
enforce_circuit_breaker |
0.015 USDT0 |
15000 |
Evaluate endpoint error rates, latency spikes, and velocity to return CLOSED/HALF_OPEN/OPEN state | 0xbbe6ff...fb95 |
verify_webhook_signature |
0.02 USDT0 |
20000 |
Cryptographically verify HMAC-SHA256 or EIP-191 signatures on incoming/outgoing agent webhooks | 0x6a2968...57d0 |
attest_exchange_receipt |
0.03 USDT0 |
30000 |
Generate an EIP-191 signed attestation of an API HTTP exchange with 0G Merkle root storage anchoring | 0x67ec72...d961 |
Free preflight and verification
| Tool | Cost | Description |
|---|---|---|
circuit_capabilities |
Free | Rule catalog, circuit breaker state defaults, supported auth schemes, pricing, and tool list |
validate_request_params |
Free | Free preflight parse-check: validates URL syntax, headers, and schema structures without network calls |
estimate_cost |
Free | Price quotation lookup tool; with no argument, quotes full pricing table |
verify_circuit_report |
Free | Offline SHA-256 content digest and EIP-191 signature validator against 4 mathematical invariants |
get_artifact |
Free | Retrieve stored exchange receipt or 0G Merkle proof by content-addressed ID |
Evaluation Pipeline & Mathematical Invariants
Every evaluation follows a strict 9-step normative pipeline verified against 4 mathematical invariants:
- Trace Consistency:
checksEvaluated == trace.length - Violation Count:
violations.length == failedTraceCount - Verdict Precedence:
BLOCK>WARN>ALLOW - Integrity Digest:
reportDigest == SHA-256(JCS(report))with valid EIP-191 signature.
Recommended workflow
Settlement happens before a paid tool runs, so preflight for free first:
circuit_capabilities— rule set catalog, circuit breaker defaults, limits, prices.validate_request_params— confirms URL syntax, headers, and schema parameters without charging.estimate_cost— exact price of the operation you intend to run.- One paid call per request (
audit_endpoint_compliance,inspect_payload_schema,enforce_circuit_breaker,verify_webhook_signature, orattest_exchange_receipt). verify_circuit_report— free, offline verification of signature and report digest.
What a report proves, and what it does not
- It does prove that an API exchange, TLS certificate, or circuit breaker evaluation produced a canonical digest and verdict under deterministic rules.
- It does produce an EIP-191 signature signed by Circuit's trusted key (
CIRCUIT_SIGNER_PRIVATE_KEY), anchorable on 0G storage. - It does not guarantee third-party uptime or API service SLAs outside the evaluated timeframe.
OKX.AI Marketplace Registration
| Property | Value |
|---|---|
| Agent ID | #10377 |
| Agent Name | EVIDIQ Circuit |
| Listing Status | Listing under review |
| Registration Tx | 0xa816ddb702a29c71d19c11ed389dfe47bcf3b2f66066acdaabcca549478fc39b |
| OKX Agent URL | https://www.okx.ai/agents/10377 |
| Communication Addr | 0x718C74EBd2c191aaC726e64B22155D61E99b1Ec7 |
| Services Registered | 10 Services (5 Gated: $0.005–$0.03, 5 Ungated: $0.00) |
License
EVIDIQ owns and licenses its original Circuit code under MIT. Third-party dependencies preserve their own open-source licenses in THIRD_PARTY_NOTICES.md.
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。