
CSOAI
Initializing...
Free forever · No credit card

CSOAI
Initializing...
Sign and verify HMAC-signed compliance attestations over the live MEOK Attestation API. Official SDKs for Python, TypeScript and Go, a stdlib CLI, and a public verifier — no key needed.
The verifier is public and rate-limited — any auditor, regulator or customer can check a compliance chain.
pip install meok-sdk
from meok_sdk import MeokClient
cert = { # came from any MEOK MCP tool result
"cert_id": "...",
"signature_sha256_hmac": "...",
"payload": {...},
}
result = MeokClient.verify_public(cert)
print(result.valid, result.message)npm install @meok/sdk
import { MeokClient } from "@meok/sdk";
const cert = { cert_id: "...", signature_sha256_hmac: "...", payload: {} };
const result = await MeokClient.verifyPublic(cert);
console.log(result.valid, result.message);go get github.com/CSOAI-ORG/meok-go
import meok "github.com/CSOAI-ORG/meok-go"
ctx := context.Background()
cert := meok.Cert{CertID: "...", /* signature + payload */}
res, _ := meok.VerifyPublic(ctx, cert)
fmt.Println(res.Valid, res.Message)# stdlib-only, no key needed
meok verify <cert_id> # verify a signed attestation (live)
meok mcp list # browse the compliance MCP catalogue
meok mcp search bias # search itSign and verify HMAC-signed compliance certs. Public verifier, no key. Live and versioned.
EU AI Act, DORA, NIS2, CRA, bias detection, watermarking — the servers that produce the certs your SDK verifies.
Which rules apply to any agent — or robot — anywhere, mapped to the CSOAI charter. Now covers physical-safety law too.
The whole MEOK compliance fleet is published as A2A Agent Cards (Google / Linux Foundation) and ACP descriptors (IBM BeeAI) — so agents can find and call it across the agentic web, not only in MCP directories. One canonical registry, every agent.
MEOK for developers is one node in a connected ecosystem.
See the whole constellation