Skip to main content
ClaudeWave

Servidor MCP: notario verificable de agentes de IA (registro de identidad y acciones en un log inmutable, criptograficamente verificable)

MCP ServersOfficial Registry0 stars0 forksPythonUpdated today
ClaudeWave Trust Score
62/100
· OK
Passed
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 9/24/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · -e
Claude Code CLI
claude mcp add trust-layer -- python -m -e
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "trust-layer": {
      "command": "python",
      "args": ["-m", "src.mcp_server.servidor"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Install first: pip install -e
Use cases

MCP Servers overview

# Registro de Confianza para Agentes

Servidor MCP que actúa como **notario verificable** de agentes de IA:
registra su identidad y cada acción relevante en un log inmutable y
criptográficamente verificable — sin certificar ni juzgar si esas
acciones cumplen ninguna normativa.

Ver la especificación completa (arquitectura, modelo de datos, plan de
validación) en el documento de diseño del proyecto.

## Estructura

```
src/
  domain/            # lógica de negocio pura, sin dependencias externas
    models.py        # AgenteIA, RegistroAuditable
    hash_chain.py     # integridad criptográfica: hash-chain + firma
    ports.py          # interfaces que la infraestructura implementa
    servicios.py       # casos de uso: VerificarIdentidadAgente, RegistrarAccionAuditable
  infrastructure/
    adaptadores_memoria.py   # implementación en memoria (tests, Fase 1)
    postgres_schema.sql      # esquema para cuando se conecte Postgres real
  mcp_server/
    servidor.py        # expone los casos de uso como herramientas MCP
tests/
  unit/          # dominio puro, sin DB
  integration/   # (pendiente: contra Postgres real)
  contract/      # garantiza el schema que ve cualquier cliente MCP
docs/adr/        # decisiones de arquitectura, con su razonamiento
```

## Uso

```bash
pip install -e ".[dev]"
pytest                          # corre toda la suite
python -m src.mcp_server.servidor   # levanta el servidor MCP
```

## Estado

Fase 1, primera versión: `verificar_identidad_agente` +
`registrar_accion_auditable` + `verificar_historial`, con adaptadores en
memoria. Sin pagos, sin certificación normativa — ver ADR 0001 y el
documento de diseño para el porqué de cada decisión.

Listado en el [MCP Registry oficial](https://registry.modelcontextprotocol.io)
como `io.github.Ernesmar/trust-layer`.

What people ask about trust-layer

What is Ernesmar/trust-layer?

+

Ernesmar/trust-layer is mcp servers for the Claude AI ecosystem. Servidor MCP: notario verificable de agentes de IA (registro de identidad y acciones en un log inmutable, criptograficamente verificable) It has 0 GitHub stars and its last recorded update is dated 2026-09-23.

How do I install trust-layer?

+

You can install trust-layer by cloning the repository (https://github.com/Ernesmar/trust-layer) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is Ernesmar/trust-layer safe to use?

+

Our security agent has analyzed Ernesmar/trust-layer and assigned a Trust Score of 62/100 (tier: OK). See the full breakdown of passed checks and flags on this page.

Who maintains Ernesmar/trust-layer?

+

Ernesmar/trust-layer is maintained by Ernesmar. The last recorded GitHub activity is dated 2026-09-23, with 0 open issues.

Are there alternatives to trust-layer?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy trust-layer to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: Ernesmar/trust-layer
[![Featured on ClaudeWave](https://claudewave.com/api/badge/ernesmar-trust-layer)](https://claudewave.com/repo/ernesmar-trust-layer)
<a href="https://claudewave.com/repo/ernesmar-trust-layer"><img src="https://claudewave.com/api/badge/ernesmar-trust-layer" alt="Featured on ClaudeWave: Ernesmar/trust-layer" width="320" height="64" /></a>

More MCP Servers

trust-layer alternatives