agenticrail-mcp
agenticrail-mcp
라이브 AgenticRail 시행 게이트를 두 개의 도구로 모든 MCP 클라이언트에 노출하는 Model Context Protocol 서버입니다.
AgenticRail은 AI 에이전트를 위한 결정적 시행 계층입니다. 에이전트를 선언된 단계 순서에 구속하고, 재생 및 건너뛴 단계를 거부하며, 완료된 각 시퀀스를 서명된 영수증으로 봉인합니다. 이 서버는 그 앞에 있는 MCP 어댑터입니다.
엔드포인트: https://mcp.agenticrail.nz/ (Streamable HTTP, 무상태)
프로토콜: 2026-07-28 — initialize 교환과 Mcp-Session-Id를 폐지한 개정판입니다. 이 서버는 둘 다 없이 무상태로 구축되었으므로 마이그레이션이 필요 없었습니다. initialize는 구형 클라이언트를 위해 여전히 응답합니다.
레지스트리: 공식 MCP 레지스트리의 nz.agenticrail/gate
도구
도구 | 기능 | 호출 |
| 에이전트 단계를 실행하기 전에 ALLOW/DENY하고 서명된 영수증을 봉인합니다 |
|
| 시퀀스의 검증 보고서를 가져오고 영수증 체인이 온전한지 확인합니다 |
|
시퀀스의 각 단계를 실행하기 전에 evaluate_step을 호출하고, 게이트가 DENY하는 단계는 실행하지 마십시오.
DENY는 해결 방법을 알려줍니다
모든 거부는 응답 봉투에 자체 해결 방법을 담고 있습니다. 서명되지 않았고 DENY 전용입니다. 이는 내려진 결정이 아니라 시퀀스의 현재 상태를 설명하기 때문입니다:
거부 | 반환되는 내용 |
|
|
|
|
|
|
|
|
action_type은 8개 값의 열거형이며 각 단계는 하위 집합만 수락합니다. 규정을 준수하는 클라이언트는 유효하지 않은 값을 구성할 수 없습니다. step_order는 첫 호출에서 잠기며 최소 하나의 항목이 필요합니다. 이를 생략하면 잠금을 해제하는 대신 기본 제공 MSMD 스파인을 선택하므로, 계획을 변경하려면 새 sequence_id를 시작하십시오.
Related MCP server: Proof Layer MCP
연결
# zero config — uses the public demo key
claude mcp add --transport http agenticrail https://mcp.agenticrail.nz/
# with your own key
claude mcp add --transport http agenticrail https://mcp.agenticrail.nz/ \
--header "Authorization: Bearer <your-agenticrail-key>"Streamable-HTTP MCP 클라이언트라면 무엇이든 작동합니다. URL을 가리키기만 하면 됩니다.
아무것도 설치하지 않고 사용해 보기
BASE=https://mcp.agenticrail.nz/
curl -s -X POST "$BASE" -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | jq .
# ⚠️ Use a sequence_id nobody else will pick. On the shared demo key the id is
# GLOBAL and sealing is PERMANENT — a fixed one in an example works once for one
# person on earth and returns SEALED_SEQUENCE for everyone after.
SEQ="mcp-smoke-$(date +%s)-$RANDOM"
curl -s -X POST "$BASE" -H 'content-type: application/json' \
-d "{\"jsonrpc\":\"2.0\",\"id\":2,\"method\":\"tools/call\",\"params\":{
\"name\":\"evaluate_step\",
\"arguments\":{\"sequence_id\":\"$SEQ\",\"step\":\"intake\",
\"action_type\":\"CHECK_STATE\"}}}" | jq .Authorization 헤더가 없으면 공개 데모 키가 사용되며 sequence_id는 demo-mcp-<your id> 로 다시 작성되어 반환됩니다. demo-는 공개 레인을, mcp-는 익명 MCP 트래픽임을 표시합니다. 이후에는 응답에서 반환된 ID를 사용하십시오. 보낸 ID는 확인되지 않습니다. 이는 의도된 동작이며 누출이 아닙니다.
demo- 시퀀스의 보고서는 키 없이 읽을 수 있으므로, 해당 시퀀스로 보내는 모든 것은 공개로 간주하십시오.
설계 — 변경 전에 읽으십시오
프로토콜 어댑터일 뿐입니다. 이 워커는 내부 비밀을 보유하지 않으며 시행 코어에 대한 특권 경로가 없습니다. 외부 호출자가 사용하는 것과 동일한 공개 API를 호출하므로 도구 로직은 AgenticRail의 내부 및 MCP 전송 버전에서 분리됩니다.
fetch가 아닌 서비스 바인딩.
mcp.agenticrail.nz는api.및report.와 동일한 영역에 있으므로 일반fetch()는 동일 영역 루프백(Cloudflare 오류 1002)이 됩니다. 바인딩은 동일한 공개 핸들러를 호출합니다. 내부 우회가 아닙니다.무상태 Streamable HTTP.
Mcp-Session-Id가 발급되거나 요구되지 않습니다. 모든 POST는 자체 완결적입니다. 전송 셸은handleRpc+fetch핸들러입니다. 사양 개정이 건드리는 유일한 부분입니다. 가치 전달 호출(callEvaluate/callVerify)은 일반 HTTPS이며 변경되지 않습니다.GET /는 디스커버리 카드를 제공하고 다른 모든 GET 경로는 404를 반환합니다.POST는 의도적으로 허용적으로 남겨두어 엔드포인트 URL에 경로를 추가하는 클라이언트도 계속 작동하도록 합니다./.well-known/oauth-*의 404는 올바릅니다. 이는 MCP 서버가 인증 불필요를 알리는 방식입니다.agent.json,agent-card.json,x402및ai-plugin.json은 이 서버가 구현하지 않는 프로토콜입니다. 이에 응답하는 것은 주장이 될 것입니다.
배포
npx wrangler deploy링크
시퀀스 직접 검증 — https://report.agenticrail.nz/report
OpenAPI — https://agenticrail.nz/openapi.json
시행 사양 — https://agenticrail.nz/spec/
운영: TUARA KURI LIMITED (NZBN 9429053582867), Hokianga, Aotearoa New Zealand.
This server cannot be installed
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
- AlicenseAqualityAmaintenanceProvides tools to issue, verify, and export cryptographically signed receipts for AI agent actions, enabling tamper-proof audit trails for compliance with regulations like the EU AI Act.4641MIT
- AlicenseNot gradedqualityDmaintenanceProvides cryptographic governance receipts for AI agents, enabling pre-execution evaluation and signed verdicts (EXECUTE/BLOCK/REVIEW/SHADOW) with offline-verifiable audit trails.MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to create cryptographically verifiable receipts of their delegated work, with capabilities for multi-party approval and offline verification.346Apache 2.0
- AlicenseAqualityAmaintenancePost-quantum, tamper-evident receipts for consequential agent actions. Provides tools for auditing, gating decisions, and egress classification with quantum-hardened security.7Apache 2.0
Related MCP Connectors
Runtime permission, approval, and audit layer for AI agent tool execution.
Issue signed receipts for AI agent actions; verify any receipt offline - free, no account.
Preflight, approve, and prove consequential agent actions with signed evidence and x402 tools.
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/MSMD-RUA/agenticrail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server