Verify proof at the execution edge: ALLOW or a typed refusal a model can read.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
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.
The claims: machine-verified badge links to a CI gate
(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:
tests/test_neutrality.py
runs in the gate, not just behind a badge link.tests/test_independence.py,
plus a source scan proving the kernel never imports Cloud or Permit, plus
scripts/assert_dep_direction.py
(runtime deps are exactly actenon-protocol).actenon-kernel conformance run actually executes; the vector files
themselves are hash-locked by
scripts/verify_conformance_manifest.py.pip install in this README is resolved
against the live registry; the Python badge is generated, not hand-edited.ecosystem.yaml,
never hand-edited.The Invariants 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 Kernel is one of the independent repositories that together close the execution gap β the gap between upstream authorization and the execution edge that actually performs a consequential side effect.
| 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 β a managed control plane (source-available; see its LICENSE). Not required by any component above; every capability in this ecosystem works without it.
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.
The Kernel is the trust anchor of the Actenon ecosystem. It is:
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._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.
Guarantee precondition: the edge guarantee holds when the protected edge is the only path to the resource, the backend accepts only brokered credentials issued after verification, and the agent has no standing credential or alternate route. If those conditions are not met, the Kernel still refuses invalid proofs β but it cannot prevent a caller that bypasses it from reaching the resource. Full scope in
docs/SCOPE_AND_GUARANTEES.md.
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.
This is the single most important architectural decision in any Actenon adoption, and the Kernel is explicitly designed for both placements.
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.
This is the path you take when you control the agent framework and want to bind every tool call to proof. See INTEGRATIONS.md for the six ranked framework paths.
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.
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 and the BoundaryVerifier 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.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/actenon-kernel)<a href="https://allmcps.com/mcp/actenon-kernel"><img src="https://allmcps.com/api/badge/actenon-kernel?style=directory" alt="Actenon Kernel on AllMCPs" /></a>