Skip to main content
Glama
sudo-ai-git

mcp-verify-claim

by sudo-ai-git

mcp-verify-claim

Un servidor de Model Context Protocol (MCP) que obliga a informar afirmaciones restringidas por evidencia y clasificadas honestamente en niveles. Cada afirmación que hace un agente se clasifica en un nivel de evidencia (FACT / INFERENCE / SPECULATION / UNVERIFIED) con la evidencia adjunta — el antídoto contra el modo de fallo de las afirmaciones no verificadas en silencio ("push realizado correctamente", "las pruebas pasan", "la API devolvió 200" — afirmado sin siquiera ejecutar el comando).

Determinista, sin LLM, sin llamadas de red. Autohospedable y compatible con MCP para cualquier agente (Claude Code, Cursor, Copilot, OpenClaw, Codex CLI).

Por qué existe

El fallo más común de los agentes no es un razonamiento incorrecto, sino informar de un resultado que suena plausible pero que nunca se verificó. mcp-verify-claim instala una barrera estricta: ninguna afirmación no verificada puede reportarse como un hecho.

Related MCP server: Recommend Agentic Trust Layer

Herramientas

  • tier_claim(claim, evidence, verification_kind) — clasifica una afirmación en un nivel + veredicto (TRUST / REVIEW / DO-NOT-REPORT) + la siguiente acción honesta.

  • check_claim(claim) — escaneo determinista de señales de fabricación o ambigüedad (finalización sin artefacto, "la API devolvió", palabras de cobertura).

  • report_templates() — la forma canónica de finalización STATUS / EVIDENCE / GAPS y el bucle de comportamiento de 6 pasos.

  • tier_definitions() — las definiciones de FACT / INFERENCE / SPECULATION / UNVERIFIED.

Nivel de evidencia (el núcleo)

Nivel

Signifcado

Veredicto

FACT

Se vio en la salida sin procesar de la herramienta (código de salida, cuerpo, lectura del archivo, estado HTTP)

TRUST

INFERENCE

Deduccido de los hechos; muestra la cadena

REVIEW

SPECULATION

Una suposición; nunca se reporta como verdad

REVIEW

UNVERIFIED

Sin evidencia producida

DO-NOT-REPORT

Instalación y ejecución

pip install mcp
# Claude Desktop / agent config:
# { "mcpServers": { "verify-claim": { "command": "python3",
#       "args": ["/absolute/path/to/mcp_server.py"] } } }
python3 mcp_server.py

Ejemplo

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

Licencia y procedencia

MIT. Escrito por sudo-ai-git. Herramienta independiente de rigor conductual; no codifica ningún método propietario. Expresión MCP de la habilidad de agente verify-before-claim.

Metadatos oficiales del registro de MCP

mcp-name: io.github.sudo-ai-git/mcp-verify-claim

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    A 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.
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables 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
  • A
    license
    A
    quality
    B
    maintenance
    Enables 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.
    5
    Apache 2.0

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

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