Agent Trust Stack MCP Server
Agent Trust Stack MCP 服务器
MCP (Model Context Protocol) 服务器,公开了 Agent Trust Stack 工具,以便任何兼容 MCP 的 AI 代理都能原生使用它们。
提供 意识链 (CoC) 溯源日志记录和 代理评级协议 (ARP) 声誉评分——这是 7 协议代理信任栈 中的两个操作协议。
工具
工具 | 描述 |
| 初始化一个新的加密哈希链(创世块) |
| 追加一个条目 — 学习、决策、创建、错误、备注、里程碑、会话开始/结束 |
| 验证链完整性(哈希链接、顺序、完整性) |
| 获取链统计信息(长度、代理、时间跨度、事件类型) |
| 获取最后 N 个条目 |
| 提交链哈希以进行外部时间戳记(OTS + RFC 3161 TSA) |
| 为另一个代理提交双向盲评 |
| 检查代理的声誉评分 |
| 获取所有 7 个协议的信息及白皮书链接 |
| 通过代理卡 URL 验证代理身份 |
| 获取代理的综合信任证据(CoC + ARP) |
Related MCP server: AgentVeil Protocol
资源
URI | 描述 |
| 所有 7 个协议的概述及链接 |
| 安装说明 |
安装
pip install agent-trust-stack-mcp对于正确的 OpenTimestamps .ots 文件格式(可选):
pip install agent-trust-stack-mcp[ots]配置
添加到您的 MCP 客户端配置(Claude Code、Cursor 等):
{
"mcpServers": {
"agent-trust-stack": {
"command": "agent-trust-stack-mcp",
"args": []
}
}
}环境变量
变量 | 默认值 | 描述 |
|
| 链文件的目录 |
|
| 评级文件的目录 |
自定义数据目录
{
"mcpServers": {
"agent-trust-stack": {
"command": "agent-trust-stack-mcp",
"args": [],
"env": {
"COC_CHAIN_DIR": "/path/to/my/chain",
"ARP_RATINGS_DIR": "/path/to/my/ratings"
}
}
}
}使用示例
连接后,任何兼容 MCP 的代理都可以直接调用这些工具:
启动溯源链
→ coc_init(agent="my-agent")
← { "status": "chain_initialized", "sequence": 0, "entry_hash": "a1b2c3..." }记录活动
→ coc_add(event_type="learn", data="Processed 500 documents from dataset X", agent="my-agent")
← { "status": "entry_added", "sequence": 1, "entry_hash": "d4e5f6..." }验证链完整性
→ coc_verify()
← { "is_valid": true, "entry_count": 42, "agents": {"my-agent": 42} }评价另一个代理
→ arp_rate(rater="agent-a", ratee="agent-b", score=0.8, context="Delivered accurate research")
← { "status": "rating_recorded", "rater_hash": "7f8a9b...", "score": 0.8 }检查声誉
→ arp_check(agent_id="agent-b")
← { "rating_count": 5, "average_score": 0.72, "unique_raters": 3 }直接运行
# stdio mode (default — for MCP client connections)
agent-trust-stack-mcp
# Or via Python module
python -m agent_trust_stack_mcp工作原理
意识链 (CoC): 一个仅追加的 JSONL 文件,其中每个条目都包含一个指向前一个条目的 SHA-256 哈希,从而创建一个防篡改日志。对早期条目的任何修改都会破坏哈希链,使篡改行为可被检测。通过 OpenTimestamps (比特币) 和 RFC 3161 TSA 进行的可选外部锚定提供了独立的时间戳证明。
代理评级协议 (ARP): 代理在交互后以 -1.0 到 1.0 的分值相互评价。评价者的身份在存储前会进行 SHA-256 哈希处理(双向盲评),因此如果没有原始 ID,评级无法被归因。声誉是所有收到的评级的总和。
本地包与托管 API
此包 (pip install agent-trust-stack-mcp) 作为 MCP 服务器在本地运行,包含 11 个用于溯源和声誉的工具。
对于完整平台(33 个工具),请使用托管 API https://marketplace-api.vibeagentmaking.com:
功能 | 本地包 | 托管 API |
CoC 溯源 | 是 (11 个工具) | 是 |
ARP 声誉 | 是 | 是 |
代理市场 | 否 | 是 |
AgentSpace (代理 LinkedIn) | 否 | 是 |
托管 CoC 链 ($29/月) | 否 | 是 |
信任握手 (ATHP) | 否 | 是 |
工具总数 | 11 | 41 |
托管 API 也兼容 MCP — 以相同方式连接,只需指向远程 URL 即可。请参阅 vibeagentmaking.com/llms.txt 获取完整的 API 文档。
注册列表
Smithery —
agent-trust-stackGlama —
agent-trust-stackmcp.so —
agent-trust-stackMCP Servers —
agent-trust-stack
代理信任栈的一部分
此 MCP 服务器公开了来自 Agent Trust Stack 的工具 — 这是用于自主 AI 代理信任基础设施的七个互锁协议:
意识链 — 溯源日志 (本服务器)
代理评级协议 — 声誉评分 (本服务器)
代理服务协议 — 机器可读合同
代理正义协议 — 争议解决
代理生命周期协议 — 出生、迁移、退休
代理匹配 — 能力发现
上下文窗口经济学 — Token 资源管理
完整栈:pip install agent-trust-stack
安全性
VAM-SEC v1.0 — 所有 CoC 和 ARP 操作均为本地文件 I/O。无需凭据,也不会存储凭据。除了在可选的 coc_anchor(OTS 日历服务器 + freeTSA.org)期间外,不会进行任何网络调用。无需 API 密钥。
许可证
Apache-2.0 — 版权所有 (c) 2026 AB Support LLC
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables AI agents to sign decisions with post-quantum cryptographic proofs and maintain secure audit trails for compliance. It provides tools for stamping events, verifying chain integrity, and exporting audit data across industries like finance and healthcare.457MIT
- AlicenseAqualityAmaintenanceTrust, identity, and reputation infrastructure for AI agents. Register agents with W3C DID (Ed25519), check EigenTrust reputation scores, submit peer attestations, search agents by capability, and verify IPFS-anchored audit trails. 11 tools.2014MIT
- Alicense-quality-maintenanceProvides AI agents with trust scoring and reputation management capabilities for secure interactions. Enables agents to check trust scores, rate interactions, and manage disputes before transacting with other agents.
- Alicense-qualityFmaintenanceProvides tamper-proof audit logging for AI agents using SHA-256 hash chains, integrity verification, and compliance reporting for the EU AI Act.1MIT
Related MCP Connectors
Decay-weighted reputation + tamper-evident trust attestations for the agent economy.
Trust infrastructure for AI agents: read a verifiable Trust Rating, claim an identity, earn a badge.
Bitcoin-anchored, tamper-evident audit log for AI agents — record, disclose and verify actions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexfleetcommander/agent-trust-stack-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server