Agent Trust Stack MCP Server
Agent Trust Stack MCPサーバー
MCP(Model Context Protocol)サーバーであり、Agent Trust Stackツールを公開しているため、MCP互換のAIエージェントであればネイティブに使用可能です。
7つのプロトコルからなるAgent Trust Stackのうち、**意識の連鎖(Chain of Consciousness: CoC)プロバナンスログ記録とエージェント評価プロトコル(Agent Rating Protocol: ARP)**評価スコアリングという2つの運用プロトコルを提供します。
ツール
ツール | 説明 |
| 新しい暗号学的ハッシュチェーン(ジェネシスブロック)を初期化 |
| エントリを追加 — 学習、決定、作成、エラー、メモ、マイルストーン、セッション開始/終了 |
| チェーンの整合性を検証(ハッシュの連結、順序、完全性) |
| チェーンの統計を取得(長さ、エージェント数、期間、イベントタイプ) |
| 最後の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仕組み
意識の連鎖(Chain of Consciousness: CoC): 各エントリが前のエントリへのSHA-256ハッシュを含む追記専用のJSONLファイルであり、改ざん検知可能なログを作成します。以前のエントリに対する変更はハッシュチェーンを破壊するため、改ざんが検出可能になります。OpenTimestamps(Bitcoin)およびRFC 3161 TSAによるオプションの外部アンカーリングにより、独立したタイムスタンプ証明を提供します。
エージェント評価プロトコル(ARP): エージェント同士が対話後に-1.0から1.0のスケールで相互評価を行います。評価者のIDは保存前にSHA-256でハッシュ化されるため(双方向ブラインド)、元のIDなしでは評価を特定できません。評価は、受け取ったすべての評価の集計値です。
ローカルパッケージ vs ホスト型API
このパッケージ(pip install agent-trust-stack-mcp)は、プロバナンスと評価のための11個のツールを備えたMCPサーバーとしてローカルで実行されます。
フルプラットフォーム(33個のツール)については、https://marketplace-api.vibeagentmaking.comのホスト型APIを使用してください:
機能 | ローカルパッケージ | ホスト型API |
CoCプロバナンス | はい (11ツール) | はい |
ARP評価 | はい | はい |
エージェントマーケットプレイス | いいえ | はい |
AgentSpace (エージェント版LinkedIn) | いいえ | はい |
ホスト型CoCチェーン ($29/月) | いいえ | はい |
信頼ハンドシェイク (ATHP) | いいえ | はい |
合計ツール数 | 11 | 41 |
ホスト型APIもMCP互換です。リモートURLを指定するだけで、同じ方法で接続できます。完全なAPIドキュメントについてはvibeagentmaking.com/llms.txtを参照してください。
レジストリ掲載
Smithery —
agent-trust-stackGlama —
agent-trust-stackmcp.so —
agent-trust-stackMCP Servers —
agent-trust-stack
Agent Trust Stackの一部
このMCPサーバーは、自律型AIエージェントの信頼インフラストラクチャのための7つの相互連結プロトコルであるAgent Trust Stackのツールを公開しています:
意識の連鎖(Chain of Consciousness) — プロバナンス記録 (本サーバー)
エージェント評価プロトコル(Agent Rating Protocol) — 評価スコアリング (本サーバー)
エージェントサービス契約(Agent Service Agreements) — 機械可読な契約
エージェント司法プロトコル(Agent Justice Protocol) — 紛争解決
エージェントライフサイクルプロトコル(Agent Lifecycle Protocol) — 誕生、移行、引退
エージェントマッチメイキング(Agent Matchmaking) — 能力発見
コンテキストウィンドウ経済(Context Window Economics) — トークンリソース管理
フルスタック: pip install agent-trust-stack
セキュリティ
VAM-SEC v1.0 — すべてのCoCおよびARP操作はローカルファイルI/Oです。認証情報は不要であり、保存もされません。オプションのcoc_anchor(OTSカレンダーサーバー + freeTSA.org)以外、ネットワーク呼び出しは行われません。APIキーは不要です。
ライセンス
Apache-2.0 — Copyright (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