mcp-verify-claim
mcp-verify-claim
Сервер Model Context Protocol (MCP), который обеспечивает обусловленную доказательствами, честно распределённую по уровням отчётность об утверждениях. Каждое утверждение агента классифицируется по уровню доказательности (FACT / INFERENCE / SPECULATION / UNVERIFIED) с прикреплёнными доказательствами — противоядие от режима отказа «тихое непроверенное утверждение» («успешно запушено», «тесты проходят», «API вернуло 200» — заявлено без единого запуска команды).
Детерминированный, без LLM, без сетевых вызовов. Можно развернуть самостоятельно, MCP-совместим с любым агентом (Claude Code, Cursor, Copilot, OpenClaw, Codex CLI).
Зачем он нужен
Самый распространённый сбой агента — не неверные рассуждения, а сообщение правдоподобно звучащего результата, который никогда не был проверен. mcp-verify-claim устанавливает жёсткий барьер: ни одно непроверенное утверждение не может быть выдано за факт.
Related MCP server: Recommend Agentic Trust Layer
Инструменты
tier_claim(claim, evidence, verification_kind)— классифицирует утверждение по уровню + вердикт (TRUST/REVIEW/DO-NOT-REPORT) + честное следующее действие.check_claim(claim)— детерминированное сканирование на сигналы фабрикации/уклончивости (completion-without-artifact, «API вернуло», слова-уклонения).report_templates()— каноническая форма завершения отчёта с разделами STATUS / EVIDENCE / GAPS и 6-шаговый поведенческий цикл.tier_definitions()— определения FACT / INFERENCE / SPECULATION / UNVERIFIED.
Уровень доказательности (ядро)
Уровень | Значение | Вердикт |
FACT | Видели в сыром выводе инструмента (код выхода, тело ответа, чтение файла, HTTP-статус) | TRUST |
INFERENCE | Выведено из фактов; покажите цепочку рассуждений | REVIEW |
SPECULATION | Догадка; никогда не выдавать за истину | REVIEW |
UNVERIFIED | Доказательства не представлены | DO-NOT-REPORT |
Установка и запуск
pip install mcp
# Claude Desktop / agent config:
# { "mcpServers": { "verify-claim": { "command": "python3",
# "args": ["/absolute/path/to/mcp_server.py"] } } }
python3 mcp_server.pyПример
tier_claim("Successfully deployed", evidence="", verification_kind="")
--> tier UNVERIFIED, verdict DO-NOT-REPORT
signals: [high] completion claim without artifact
next: go get the evidence before reporting
tier_claim("Deploy is live", evidence="origin/main SHA==local HEAD, HTTP 200", verification_kind="read_back")
--> tier FACT, verdict TRUSTЛицензия и происхождение
MIT. Автор — sudo-ai-git. Автономный инструмент поведенческой строгости; не содержит проприетарных методов. MCP-реализация агентского навыка verify-before-claim.
Официальные метаданные реестра MCP
mcp-name: io.github.sudo-ai-git/mcp-verify-claim
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
- FlicenseNot gradedqualityNot gradedmaintenanceA bounded evidence review engine that ingests documents, extracts evidence for a given claim, detects contradictions, and produces auditable evidence packets without hallucinations or open-web research.
- AlicenseNot gradedqualityBmaintenanceEnables agents to verify claims with evidence-based truth scores and confidence levels by running a deterministic pipeline of evidence lanes and adversarial checks.19MIT
- AlicenseNot gradedqualityBmaintenanceEnables agents to verify their own output mid-task by checking every claim against provided sources, returning supported, partial, unsupported, or contradicted verdicts with exact citations.MIT
- AlicenseAqualityBmaintenanceEnables AI agents to record, recall, correct, and forget evidence-backed factual claims with temporal history, while explaining whether remembered information is current, historical, or contested.5Apache 2.0
Related MCP Connectors
Deterministic fact verification for AI agents — checksums & curated data, not guesses.
Certified SEC EDGAR fact memory for AI agents with zero hallucination and filing provenance.
Evidence-backed x402 web verification for AI agents, with auditable decisions for every condition.
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/sudo-ai-git/mcp-verify-claim'
If you have feedback or need assistance with the MCP directory API, please join our Discord server