ArkForge信任层——MCP服务器
第三方认证代理——为任何HTTP调用获取独立的加密证明。
适用于 AI代理、webhooks、微服务或任何HTTP客户端. 证明由ArkForge(独立第三方)签署-- 不是由来电者.
______________________________________________________________________
为什么这很重要
当系统进行HTTP调用时,没有关于发送内容、接收内容或发生时间的独立记录。任何一方都可以拒绝或更改交易。
ArkForge通过充当 证明代理人:调用者通过ArkForge路由其请求,ArkForge使用Ed25519密钥对完整的请求+响应包进行签名,通过RFC 3161为其添加时间戳,并将其锚定在 Sigstore 记录 --不可变、可公开审计的日志。
由此产生的证明可以在公共URL上由任何人永久验证,而无需联系ArkForge。
这就是自签名证书和CA颁发的证书之间的区别。 其他工具生成由调用者自己签名的证明。ArkForge生成由独立第三方签署的证明。
______________________________________________________________________
用例
- AI代理 -每个外部API调用的审核跟踪(Claude、GPT、Mistral、LangChain、AutoGen)
- 网络钩子 --证明使用此确切有效负载接收到Stripe或GitHub事件
- 微服务 --内部服务(合规、金融科技)之间的防篡改日志
- 数据提供者 -证明外部API在此时间戳返回此值
- 自动化 --证明n8n或Zapier工作流中的操作
______________________________________________________________________
安装
{
"mcpServers": {
"arkforge": {
"command": "uvx",
"args": ["arkforge-mcp"],
"env": {
"ARKFORGE_API_KEY": "your_api_key_here"
}
}
}
}获取免费API密钥(每月500次验证) arkforge.tech.
______________________________________________________________________
工具
certify_call
通过ArkForge路由HTTP调用,并获取交易的加密证明。
target URL of the upstream API to call
payload JSON body (optional)
method "POST" or "GET" (default: "POST")
description Human-readable description included in the proof
agent_identity Identifier for the calling system (optional)退货 proof_id, verification_url, upstream_response, chain_hash, timestamp,以及Ed25519 signature.
使用此而不是直接调用API 当你需要一个可审计的记录时。
示例响应:
{
"proof_id": "prf_20260310_143022_a1b2c3",
"verification_url": "https://trust.arkforge.tech/v1/proof/prf_20260310_143022_a1b2c3",
"upstream_response": { "status": "ok" },
"chain_hash": "e3b0c44298fc1c149afb...",
"timestamp": "2026-03-10T14:30:22.481Z",
"timestamp_authority": "verified",
"rekor_log_id": "https://rekor.sigstore.dev/api/v1/log/entries/...",
"seller": "api.example.com",
"signature": "MCowBQYDK2VwAyEA..."
}get_proof
检索给定的完整证明包 proof_id.
verify_proof
获取一份人类可读的证明摘要,这对于向用户或审计员解释独立验证的内容非常有用。
get_usage
检查您本月的剩余积分。
______________________________________________________________________
每个证明包含什么
| 字段 | 描述 |
|---|---|
proof_id | 唯一标识符——永久公共URL |
hashes.request | 发送的确切请求的SHA-256 |
hashes.response | 收到的确切响应的SHA-256 |
hashes.chain | 组合哈希——防篡改 |
parties.seller | 被称为API的域 |
timestamp_authority | 通过FreeTSA获取RFC 3161时间戳(企业版QTSP eIDAS) |
rekor | Sigstore Rekor不可变日志条目 |
arkforge_signature | ArkForge独立密钥的Ed25519签名 |
______________________________________________________________________
定价
| 计划 | 证明/月 | 价格 |
|---|---|---|
| 免费 | 500 | 0欧元 |
| 专业 | 5000 | 29欧元/月 |
| 企业 | 50000+QTSP eIDAS | 149欧元/月 |
______________________________________________________________________
REST API
MCP服务器是一条集成路径。相同的API适用于任何语言或框架:
curl -X POST https://trust.arkforge.tech/v1/proxy \
-H "X-Api-Key: your_key" \
-H "Content-Type: application/json" \
-d '{"target": "https://api.example.com/action", "payload": {"data": "value"}}'