The open verifier for proof-bound consequential execution. Verifies cryptographic proof at the execution edge before any side effect — payments, deletes, deploys, access changes. 51 conformance vectors. Python/TS/Go/Rust SDKs. No valid proof, no execution.
claude mcp add actenon-kernel -- uvx actenon-kernel{
"mcpServers": {
"actenon-kernel": {
"command": "uvx",
"args": ["actenon-kernel"]
}
}
}Resumen de MCP Servers
# Actenon Kernel
<!-- mcp-name: io.github.Actenon/kernel -->
> The open verifier for proof-bound consequential execution. Defines what a valid proof is. Verifies proofs at the execution edge; issues no grants; runs no policy decisions.
[](LICENSE)
<!-- PYTHON-BADGE:START -->
[](https://www.python.org/)
<!-- PYTHON-BADGE:END -->
[](https://pypi.org/project/actenon-kernel/)
[](docs/CONFORMANCE.md)
[](docs/SPEC_INDEX.md)
[](VERSIONING.md)
[](docs/SDK_SELECTION_GUIDE.md)
[](https://github.com/Actenon/actenon-kernel/actions/workflows/ci.yml)
[](https://github.com/Actenon/actenon-kernel/actions/workflows/invariants.yml)
[](https://github.com/Actenon/actenon-kernel/actions/workflows/verify-claims.yml)
[](docs/integrations/MCP_QUICKSTART.md)
[](https://docs.astral.sh/ruff/)
[](#independence)
[](tests/test_neutrality.py)
[](tests/test_independence.py)
### Every claim above is machine-verified
The `claims: machine-verified` badge links to a CI gate
([`verify-claims.yml`](.github/workflows/verify-claims.yml)) that fails on
every PR, push to `main`, and once a day if any factual claim this README
makes about the kernel stops being true:
- **Zero network calls during verification** — [`tests/test_neutrality.py`](tests/test_neutrality.py)
runs in the gate, not just behind a badge link.
- **Runs without Permit, Cloud, or Scan** — [`tests/test_independence.py`](tests/test_independence.py),
plus a source scan proving the kernel never imports Cloud or Permit, plus
[`scripts/assert_dep_direction.py`](scripts/assert_dep_direction.py)
(runtime deps are exactly `actenon-protocol`).
- **The conformance count** — "51 conformance vectors" is compared against
what `actenon-kernel conformance run` actually executes; the vector files
themselves are hash-locked by
[`scripts/verify_conformance_manifest.py`](scripts/verify_conformance_manifest.py).
- **Install commands** — every `pip install` in this README is resolved
against the live registry; the Python badge is generated, not hand-edited.
- **The ecosystem table** — rendered from the protocol's `ecosystem.yaml`,
never hand-edited.
The [Invariants](.github/workflows/invariants.yml) workflow additionally
proves on every PR that a clean, no-extras install verifies the full
conformance surface — 33/33 tests, zero skips — including Ed25519.
If a claim drifts, the badge goes red before a human notices.
---
## The Actenon ecosystem
The Kernel is one of five independent repositories that together close the **execution gap** — the gap between *upstream authorization* and the *execution edge* that actually performs a consequential side effect.
<!-- ECOSYSTEM-TABLE:START -->
| Repository | Role | Depends on | Packages |
|---|---|---|---|
| **`actenon-protocol`** | The neutral wire contract — what every artefact looks like on the wire | — | `actenon-protocol` (PyPI) · `@actenon/protocol-types` (npm) |
| **`actenon-kernel`** ← you are here | The open verifier — defines what a valid proof is | `actenon-protocol` | `actenon-kernel` (PyPI) |
| **`actenon-permit`** | The developer on-ramp and authority broker | `actenon-kernel`, `actenon-protocol` | `actenon-permit` (PyPI) · `@actenon/sdk` (npm) |
| **`actenon-scan`** | The independent static-analysis scanner | — | `actenon-scan` (PyPI) |
**Optional:** [`actenon-cloud`](https://github.com/Actenon/actenon-cloud) — a managed control plane (source-available; see its LICENSE). Not required by any component above; every capability in this ecosystem works without it.
<!-- ECOSYSTEM-TABLE:END -->
Every repo can be adopted independently. The Kernel in particular can be wired in **at the agent framework** (LangChain tool, MCP tool, Claude Managed Agents custom tool, etc.) **or independently at the resource boundary** (FastAPI route, Express route, Go HTTP handler). Both placements are first-class.
---
## What this is
The Kernel is the **trust anchor** of the Actenon ecosystem. It is:
- **Independent** — runs without Permit, Cloud, or Scan. Zero network calls during verification.
- **The verifier at the execution edge** — the `PCCBVerifier` is pure and stateless; the `ProtectedExecutor` enforces replay, escrow, idempotency, and credential brokering at the edge before any side effect, then emits the Receipt or Refusal.
- **Conformance-locked** — 51 conformance vectors define exactly what "a valid PCCB" means, in any language.
- **Multi-language** — Python reference, plus TypeScript, Go, and Rust verifier SDKs that all conform to the same vectors.
- **Framework-agnostic** — proof verification is a function call, not a framework. The same verifier runs inside a LangChain `_run`, an MCP tool handler, an Express route, or a Go HTTP handler.
The Kernel does **one thing**: it verifies that a `PCCB` (Proof of Constrained Capability Bound) authorizes an exact `Action Intent` for this caller, this target, this audience, this scope, this time window, and this single execution attempt — and the `ProtectedExecutor` refuses the attempt (no side effect, structured Refusal emitted) if verification fails. The Kernel does **not** issue grants or make policy decisions — that's Permit's job.
## Why it exists
Modern agent stacks already answer the upstream question — *should this requester be allowed to do this kind of thing?* — with authentication, policy engines, approval workflows, and audit logs. They still leave open the question the execution edge needs to answer:
> Is the exact action about to execute still the exact action that was authorized — for this endpoint, this tenant, this subject, this target, and this time window?
That unanswered question is the **execution gap**. It is where parameter mutation between approval and execution, replay of valid-looking proof, presentation to the wrong endpoint, tenant/subject rebinding, and stale-proof reuse actually happen. The Kernel closes it.
Read the canonical problem statement in [`THE_EXECUTION_GAP.md`](docs/THE_EXECUTION_GAP.md).
## The two places you can wire it in
This is the single most important architectural decision in any Actenon adoption, and the Kernel is explicitly designed for **both** placements.
### Placement A — at the agent framework (brokered mode)
The Kernel verifier runs inside the agent's tool implementation. The agent calls a tool; the tool verifies proof; the tool executes. The agent never holds a production credential — the broker resolves it after verification.
```text
agent → framework tool (LangChain / MCP / Claude / CrewAI / ...)
↓ verifies PCCB locally
↓ brokers credential
↓ executes side effect
Receipt or Refusal
```
This is the path you take when you control the agent framework and want to bind every tool call to proof. See [`INTEGRATIONS.md`](docs/INTEGRATIONS.md) for the six ranked framework paths.
### Placement B — independently at the resource boundary (resource-owned mode)
The Kernel verifier runs inside the resource itself — a FastAPI route, an Express endpoint, a Go HTTP handler, an internal service method. The resource is the protected endpoint. The agent (or any caller) must present a valid PCCB to cause a side effect, regardless of how it got there.
```text
any caller (agent / human / service / attacker)
↓ presents PCCB
resource boundary (FastAPI / Express / Go / ...)
↓ verifies PCCB locally
↓ executes side effect
Receipt or Refusal
```
This is the path you take when you cannot fully trust the agent framework, when the resource is shared by multiple callers, or when the resource team and the agent team are different organizations. See the **Boundary Kit** in [`actenon-permit`](https://github.com/Actenon/actenon-permit) and the [`BoundaryVerifier`](actenon/boundary/) API in this repo.
Both placements use the same Kernel, the same PCCB shape, the same conformance vectors, and the same Receipt/Refusal artefacts. You can mix them in one deployment.
## The 15-step verification pipeline
| Phase | Steps | What's checked |
|---|---|---|
| **A: Pre-auth** | 1–5 | Structure, protocol version, canonicalisation, key resolution, signature |
| **B: Post-auth** | 6–13 | Time validity, audience, boundary, target, action, parameter digest, authority, revocation |
| **C: Stateful** | 14–15 | Replay (deferred to executor), execution eligibility |
Pre-auth failures collapse to a single public-safe code `PROOF_INVALID`. Post-auth failures disclose the specific code (`AUDIENCE_MISMATCH`, `ACTION_MISMATCH`, `REPLAY_DETECTED`, etc.) only to trusted callers. This two-layer refusal model is part of the protocol — see [`actenon-protocoLo que la gente pregunta sobre actenon-kernel
¿Qué es Actenon/actenon-kernel?
+
Actenon/actenon-kernel es mcp servers para el ecosistema de Claude AI. The open verifier for proof-bound consequential execution. Verifies cryptographic proof at the execution edge before any side effect — payments, deletes, deploys, access changes. 51 conformance vectors. Python/TS/Go/Rust SDKs. No valid proof, no execution. Tiene 1 estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala actenon-kernel?
+
Puedes instalar actenon-kernel clonando el repositorio (https://github.com/Actenon/actenon-kernel) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar Actenon/actenon-kernel?
+
Actenon/actenon-kernel aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.
¿Quién mantiene Actenon/actenon-kernel?
+
Actenon/actenon-kernel es mantenido por Actenon. La última actividad registrada en GitHub es de today, con 3 issues abiertos.
¿Hay alternativas a actenon-kernel?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega actenon-kernel en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/actenon-actenon-kernel)<a href="https://claudewave.com/repo/actenon-actenon-kernel"><img src="https://claudewave.com/api/badge/actenon-actenon-kernel" alt="Featured on ClaudeWave: Actenon/actenon-kernel" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!