Agent Trust Stack MCP Server
Agent Trust Stack MCP 서버
MCP(Model Context Protocol) 호환 AI 에이전트가 Agent Trust Stack 도구를 기본적으로 사용할 수 있도록 노출하는 MCP 서버입니다.
7-프로토콜 Agent Trust Stack의 두 가지 운영 프로토콜인 의식의 연쇄(Chain of Consciousness, CoC) 출처 로깅 및 에이전트 평가 프로토콜(Agent Rating Protocol, ARP) 평판 점수 산정 기능을 제공합니다.
도구
도구 | 설명 |
| 새로운 암호화 해시 체인(제네시스 블록) 초기화 |
| 항목 추가 — 학습, 결정, 생성, 오류, 메모, 마일스톤, 세션 시작/종료 |
| 체인 무결성 검증 (해시 연결, 순서, 완전성) |
| 체인 통계 가져오기 (길이, 에이전트, 시간 범위, 이벤트 유형) |
| 마지막 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): 각 항목이 이전 항목과 연결된 SHA-256 해시를 포함하는 추가 전용 JSONL 파일로, 변조 방지 로그를 생성합니다. 이전 항목을 수정하면 해시 체인이 깨지므로 변조를 감지할 수 있습니다. OpenTimestamps(비트코인) 및 RFC 3161 TSA를 통한 선택적 외부 앵커링은 독립적인 타임스탬프 증명을 제공합니다.
에이전트 평가 프로토콜(ARP): 에이전트는 상호 작용 후 -1.0에서 1.0 사이의 척도로 서로를 평가합니다. 평가자의 신원은 저장 전에 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