Multi-Jurisdiction AI Compliance  ·  ISO/IEC 42001  ·  MCP Native

The compliance guardrail your AI agent fleet cannot operate without

One MCP interceptor screening every tool call against 27 pre-mapped rules across six jurisdictions — deterministically, before execution, with an audit trail your DPO can hand a regulator.

Jump to what matters for your role: For DPOs For CISOs For Engineering
27 rules pre-mapped across EU, Nigeria, UK, Singapore, Egypt & Colorado
Zero-config ISO 42001 Annex A control tagging
Single decorator. No agent rewrite required.
HMAC-SHA256 audit records, SIEM-ready
tools/your_enterprise_tool.py
# Before Aegis Guard — opaque, unaudited, non-compliant
@mcp.tool()
async def screen_candidates(payload: dict) -> dict:
    return hiring_pipeline.evaluate(payload)

# ─────────────────────────────────────────────────────────────────
# After — one import, one decorator. Full EU AI Act Article 6 coverage.
from aegis_guard import compliance_gate

@mcp.tool()
@compliance_gate        # ← intercepts, classifies, blocks, and signs
async def screen_candidates(payload: dict) -> dict:
    return hiring_pipeline.evaluate(payload)

# Every call now produces a signed AuditRecord:
# {
#   "risk_tier": "HIGH_RISK",  "article": "Article 6(2) + Annex III §4",
#   "iso_controls": ["A.6.1.2", "A.9.2"],  "is_blocked": true,
#   "hmac_sha256": "a3f8…c91d",  "confidence": 0.95
# }
27
Rules Wired — 21 EU + 2 Nigeria NDPA + 1 UK + 1 Singapore + 1 Egypt + 1 Colorado
4
Scoring Dimensions Per Evaluation
ISO 42001
Annex A Controls Auto-Tagged
39
Annex A Controls In The Registry
Jurisdictions Covered

Six jurisdictions, one engine, zero configuration

Aegis Guard doesn't just cover the EU AI Act. Every jurisdiction below is built on real, binding law — verified against primary-source legal text, not policy drafts or non-binding frameworks — and the rule set keeps growing as new jurisdictions are researched and activated. Five are already enforceable today; Colorado's is wired ahead of its 1 January 2027 effective date, flagged as a forward-looking risk rather than a live violation until then.

European Union

AI Act

Regulation (EU) 2024/1689 — in force since Aug 2024
21 rulesActive
United Kingdom

UK GDPR · DUAA 2025

Data (Use and Access) Act 2025, s.80 — live since 5 Feb 2026
1 ruleActive
Nigeria

NDPA 2023

Nigeria Data Protection Act 2023, ss.36 & 41–43
2 rulesActive
Singapore

PDPA 2012

Personal Data Protection Act 2012, s.16
1 ruleActive
Egypt

PDPL 2020

Law No. 151/2020, Art. 17 — grace period ends ~Nov 2026
1 ruleTransitional
Colorado, US

SB26-189 ADMT Act

Automated Decision-Making Technology Act — not in force until 1 Jan 2027
1 ruleUpcoming
The Compliance Gap

Your AI agents are making consequential decisions.
Today, nobody can prove they shouldn't have.

The EU AI Act came into force in August 2024, the UK's new automated-decision regime since 5 February 2026, and Nigeria, Singapore, and Egypt already enforce their own data-protection duties on automated processing. Every automated decision touching employment, credit, healthcare access, marketing, or biometric data is now a regulated event in at least one jurisdiction you operate in — whether your legal team knows the tool exists or not.

🚫

Article 5 Violations Are Invisible Until They Are Front-Page News

Subliminal manipulation, social scoring, real-time biometric surveillance in public spaces — Article 5 prohibited uses are absolute bans with fines up to €35M or 7% of global turnover. Without interception at the point of execution, your agents may already be crossing these lines.

⚖️

High-Risk Annex III Systems Require Explainable, Auditable Decisions

CV screening, credit scoring, student assessment, law enforcement analytics — eight Annex III categories require full documentation of AI decision logic. A log file is not an audit trail. A JSONL record without cryptographic integrity proof is inadmissible evidence of compliance.

🔍

Regulators Are Moving to Automated Discovery

The EU AI Office is building tool-call-level inspection capability. MCP and agent frameworks are specifically in scope. "We didn't know the tool existed" is not a viable defence when your model context protocol server is actively running high-risk classification pipelines.

🔐

ISO 42001 Requires a Documented AI Management System

Enterprise certification programmes increasingly require ISO/IEC 42001 conformance. Annex A mandates explicit control mappings for AI risk (A.6.1), governance (A.9.2), and operational monitoring (A.10.1). Manual mapping exercises become instantly stale when your agent fleet evolves weekly.

🛡️

Aegis Guard Gateway: Compliance at the Point of Execution

Rather than auditing outputs after the fact, Aegis Guard intercepts every JSON-RPC tool call at the point of execution — before your tool's own business logic runs — classifying the intent, blocking prohibited operations, and writing a cryptographically signed audit record in a single atomic operation. Your compliance posture is enforced, not reported.

Prevent, not detect. Hard blocks on PROHIBITED-tier operations execute before the downstream tool function runs.
Evidence-grade records. Every evaluation produces an HMAC-SHA256 signed record suitable for regulatory submission.
Continuous ISO mapping. Annex A control IDs are injected into every audit record without configuration.
Built For Your Role

One deployment, three stakeholders satisfied

Compliance tooling usually forces a trade-off between what Legal needs, what Security will approve, and what Engineering will actually ship. Aegis Guard is designed so none of the three has to compromise.

For Data Protection Officers

Evidence you can hand a regulator, not a log file you have to explain

Every evaluation — block, flag, or clean pass — produces a signed, timestamped record mapped to the exact statute and control that triggered it.

  • HMAC-SHA256 sealed records, tamper-evident by construction, not by policy.
  • Every record cites its governing Article or statute section directly.
  • ISO/IEC 42001 Annex A controls attached automatically, no manual mapping.
  • Coverage across six jurisdictions in one register, not six spreadsheets.
For CISOs & Security Leads

A control you can approve without opening a new attack surface

Aegis Guard runs in-process, inside your own perimeter — no payload ever leaves your environment to reach a third-party classifier.

  • On-premise, VPC, and air-gapped deployment options, no vendor data path.
  • Deterministic scoring — no LLM-in-the-loop, no prompt-injection surface to defend.
  • Per-tier thresholds you control, with hard-blocked invariants at startup.
  • SIEM-ready webhook export for your existing detection and response pipeline.
For Engineering

One decorator. No agent rewrite. Ships in an afternoon.

Aegis Guard instruments an existing FastMCP tool without touching its business logic — you add an import and a decorator, nothing else moves.

  • @compliance_gate wraps any @mcp.tool() function directly, in place.
  • Fully deterministic scoring — every classification is reproducible from the raw payload.
  • No new infrastructure to run: it executes in-process on every tool call.
  • Typed, tested Python — 234 passing tests across the full suite.
Technical Architecture

Four layers that make a legally defensible compliance system

Hover to see the stack separate — each layer below runs independently, in sequence, on every tool call.

01 / 04

The Real-Time JSON-RPC Interceptor Layer

Aegis Guard inserts itself at the MCP tool-invocation boundary using a single @compliance_gate decorator. Every tools/call JSON-RPC request is intercepted before Python execution begins. Tool name, all key paths, all nested values, and semantic conjunctions are extracted as structured signal vectors.

Existing agent implementations require no modification to business logic. One import and one decorator instruments an entire MCP server in under five minutes. The interceptor is deployed in your environment — no traffic leaves your perimeter.

@compliance_gateJSON-RPC 2.0In-processZero agent rewriteFastMCP native
1

LLM Client Issues tools/call

Claude Desktop / OpenAI / custom agent sends JSON-RPC request to your MCP server.

{"method": "tools/call", "params": {...}}
2

@compliance_gate Intercepts

Payload is extracted before the decorated tool function is invoked.

_extract_all_text(payload) → signals
3

Rule Engine Evaluates

All wired rules evaluated in-process. PROHIBITED tier triggers an immediate block.

_run_all_rules(tool_name, payload)
4

Signed Audit Record Written

HMAC-SHA256 record appended to append-only JSONL log. Optionally forwarded to your SIEM via webhook.

AuditRecord.from_compliance_result()
02 / 04

Deterministic 4-Dimension Risk Scoring Engine

Unlike probabilistic LLM-based classifiers, Aegis Guard uses a fully deterministic, explainable scoring model with four independent signal dimensions. Each dimension has a fixed maximum contribution weight, making every classification decision independently auditable and reproducible from the raw payload alone.

The engine evaluates every wired rule simultaneously — the 21 EU AI Act rules, Nigeria's NDPA 2023 rules, the UK's Data (Use and Access) Act 2025 rule, Singapore's PDPA 2012 rule, Egypt's PDPL rule, and Colorado's SB26-189 rule (wired now for forward-looking flagging; the underlying law itself isn't enforceable until 1 Jan 2027) — through the same scoring model. Every match returns a ScoreBreakdown object logging each dimension's contribution, the pre-clamp total, and whether an exception pattern reduced the score.

TOOL_NAME_STRUCTURAL +0.40KEY_PATH_STRUCTURAL +0.25CONTENT +0.20CONJUNCTION +0.50EXCEPTION −0.30
PROH-ART5-1HProhibited
TOOL_NAME +0.40KEY_PATH +0.25CONTENT +0.20CONJUNCTION +0.50
1.35 pre-clamp → 1.00 finalBLOCK
HIGH-A3-S4-EMPLOYHigh Risk
TOOL_NAME +0.40CONJUNCTION +0.50
Final confidence 0.90FLAGGED
03 / 04

Tamper-Evident Audit Trail with ISO 42001 Annex A Mapping

Every compliance evaluation — whether it results in a block, a flag, or a clean pass — generates an AuditRecord sealed with HMAC-SHA256 using a 32-byte minimum secret. The hash covers the canonical serialisation of the full record, making any post-hoc tampering immediately detectable. Each signed record can chain to the one before it in the same workflow — turn each link below to see the idea.

request_idreq-8f3a-91cd-4e22
tool_namelive_facial_recognition_cctv
actionCALL_BLOCKED
risk_tierPROHIBITED
top_rule_idPROH-ART5-1H
article_refArticle 5(1)(h)
iso_42001_controls["A.6.1.2","A.9.2","A.10.1"]
hmac_sha256a3f8c9d1…9e1d3f5a
A.6.1.2

AI risk assessment — mandatory risk evaluation for high-impact AI operations

A.9.2

Human oversight — controls for human review of AI-generated decisions

A.10.1

Operational monitoring — continuous surveillance of AI system behaviour

04 / 04

Configurable Per-Tier Threshold Overrides

Every enterprise has a different risk tolerance. A financial institution subject to FCA scrutiny may need stricter detection than a research lab operating under academic exemptions. Aegis Guard's operator threshold system lets your CISO dial sensitivity per EU AI Act tier without touching a single rule definition.

Three environment variables override the engine's per-rule confidence floor at runtime. Production environments enforce a safety invariant: thresholds cannot be inverted, and observe-only mode for PROHIBITED operations is hard-blocked.

Prohibited
0.50
High Risk
0.45
Transparency
0.40
Minimal
1.00
Production guard: PROHIBITED < TRANSPARENCY raises a hard ValidationError — inverted thresholds are rejected at startup.
Production guard: observe-only mode for PROHIBITED operations cannot be silently enabled — rejected at startup, not just discouraged.
Pre-Mapped Rule Coverage

27 rules across six jurisdictions. Zero configuration.

Every rule shipped with Aegis Guard is pre-mapped to its governing Article or statute, risk tier, and ISO 42001 Annex A controls. Your compliance team does not write detection logic. They configure thresholds and review evidence.

TierRulesJurisdictionsExample
Prohibited 8 EU Real-time remote biometric identification in public spaces (Art. 5(1)(h))
High Risk 17 EU · UK · Nigeria · Singapore · Egypt · Colorado Employment, HR & recruitment scoring (Annex III §4); cross-jurisdiction automated-decision and consent-withdrawal duties
Transparency 2 EU Chatbot disclosure and deepfake / synthetic media labelling (Art. 50)

See the full 27-rule ledger ↓

PROH-ART5-1A
Subliminal Manipulation
ProhibitedArt. 5(1)(a)
PROH-ART5-1B
Vulnerability Exploitation
ProhibitedArt. 5(1)(b)
PROH-ART5-1C
Social Scoring
ProhibitedArt. 5(1)(c)
PROH-ART5-1D
Predictive Policing (Individual Profiling)
ProhibitedArt. 5(1)(d)
PROH-ART5-1E
Facial Recognition Data Scraping
ProhibitedArt. 5(1)(e)
PROH-ART5-1F
Emotion Recognition (Workplace / Education)
ProhibitedArt. 5(1)(f)
PROH-ART5-1G
Biometric Categorisation (Sensitive Attributes)
ProhibitedArt. 5(1)(g)
PROH-ART5-1H
Real-Time Remote Biometric ID (Public, Law Enforcement)
ProhibitedArt. 5(1)(h)
HIGH-A3-S1A-RBI
Remote Biometric Identification (Non-Prohibited Uses)
High RiskAnnex III §1(a)
HIGH-A3-S1BC-BIOCAT-EMOTION
Biometric Categorisation & Emotion Recognition
High RiskAnnex III §1(b)(c)
HIGH-A3-S2-INFRA
Critical Infrastructure Management & Safety
High RiskAnnex III §2
HIGH-A3-S3-EDU
Education: Access & Student Assessment
High RiskAnnex III §3
HIGH-A3-S4-EMPLOY
Employment, HR & Recruitment Scoring
High RiskAnnex III §4
HIGH-A3-S5A-BENEFITS
Social Benefits & Public Services Eligibility
High RiskAnnex III §5
HIGH-A3-S5B-CREDIT
Credit Scoring & Financial Risk Evaluation
High RiskAnnex III §5
HIGH-A3-S5B-INSURE
Insurance Risk Assessment & Premium Pricing
High RiskAnnex III §5
HIGH-A3-S6-LEF
Law Enforcement AI Systems
High RiskAnnex III §6
HIGH-A3-S7-MIGRATION
Migration, Asylum & Border Control
High RiskAnnex III §7
HIGH-A3-S8-JUSTICE
Justice & Democratic Processes
High RiskAnnex III §8
TRANS-ART50-1
Chatbot / Conversational AI Disclosure
TransparencyArt. 50(1)
TRANS-ART50-4
Deepfake, Synthetic Media & Public-Interest Text
TransparencyArt. 50(2)·50(4)

Plus 2 rules for Nigeria — NDPA 2023, in force today

Nigeria's Data Protection Act 2023 governs cross-border transfers and processing after a data subject's objection — real, binding law, already enforced.

HIGH-NG-NDPA-S41-CROSSBORDER
Cross-Border Transfer Without a Lawful Basis
High RiskNDPA 2023, ss.41–43
HIGH-NG-NDPA-S36-OBJECTION
Processing Continues After Data Subject Objection
High RiskNDPA 2023, s.36

Plus 1 rule for the UK — Data (Use and Access) Act 2025, in force since 5 Feb 2026

The UK repealed UK GDPR Article 22 and replaced it with a new automated-decision-making regime (Articles 22A–22D) under its own Act.

HIGH-UK-DUAA-S80-AUTOMATED-DECISION
Solely Automated Significant Decision on Special Category Data Without Safeguards
High RiskUK GDPR Arts. 22A–22D

Plus 1 rule for Singapore — Personal Data Protection Act 2012, s.16

Singapore's Personal Data Protection Act requires an organisation to cease processing once an individual withdraws consent, unless another lawful basis applies.

HIGH-SG-PDPA-S16-WITHDRAWAL
Processing Continues After a Data Subject's Consent Withdrawal
High RiskPDPA 2012, s.16

Plus 1 rule for Egypt — Personal Data Protection Law No. 151/2020, Art. 17

Egypt's Personal Data Protection Law prohibits direct electronic marketing unless the sender provides a clear mechanism to refuse or withdraw consent. Its grace period ends around October/November 2026.

HIGH-EG-PDPL-ART17-MARKETING
Direct Electronic Marketing Continues Without Honoring Refusal or Withdrawal
High RiskPDPL 2020, Arts. 17–18

Plus 1 forward-looking rule for Colorado — SB26-189, not enforceable until 1 Jan 2027

Colorado's Automated Decision-Making Technology Act requires deployers to give notice before use, explain adverse decisions, and offer meaningful human review for consequential decisions in employment, housing, lending, insurance, healthcare, education, and government services. Wired now so it flags as a forward-looking risk, not a live violation — the underlying obligations do not take effect until 1 January 2027.

HIGH-CO-SB189-ADMT-CONSEQUENTIAL
Consequential ADMT Decision Without Notice or Meaningful Human Review
High RiskSB26-189 — effective 1 Jan 2027
Regulatory Intelligence

Live monitoring across 6 jurisdictions, updated weekly

A scheduled Regulatory Watch Loop checks each jurisdiction's primary regulator directly — the European Commission, GOV.UK / DSIT, Ireland's Data Protection Commission, Nigeria's NDPC & NITDA, Singapore's PDPC, and Egypt's Ministry of Communications and Information Technology — surfacing new developments for review before they become a gap in your compliance posture. This is regulatory intelligence: the early-warning layer that feeds rule development, separate from the rule engine itself. Enforced rule coverage today comes from five reviewed, activated rulesets — the EU AI Act, Nigeria's NDPA, UK GDPR under the Data (Use and Access) Act 2025, Singapore's PDPA, and Egypt's PDPL (26 rules, above); each new jurisdiction is added once its rule is built and reviewed. Ireland's coverage comes through the EU AI Act as an EU member state, with its own Data Protection Commission adding a dedicated monitoring layer on top. Colorado's rule is wired for forward-looking flagging ahead of its 1 January 2027 effective date (see above); Watch Loop coverage for its regulator is a planned future addition.

European Commission
EU · Digital Strategy feed
GOV.UK — DSIT
UK · News & communications
Data Protection Commission
Ireland · Press releases
NDPC & NITDA
Nigeria · Press releases
PDPC
Singapore · Media & events feed
MCIT
Egypt · Press releases
Regulatory Clock

The enforcement calendar is not negotiable — in any of the six

Your procurement cycle, your legal review cycle, and your engineering integration cycle all need to complete before the relevant enforcement date, whichever jurisdiction it falls in. Aegis Guard is designed to compress the integration timeline to days, not quarters.

August 2024 — In ForceEU
EU AI Act Enters into Force
The regulation became binding law across all 27 EU member states. Organisations operating AI systems in-scope have been under regulatory scrutiny since this date.
February 2025 — ActiveEU
Article 5 Prohibited Practices Enforceable
All eight prohibited AI practices under Article 5 are now fully enforceable. Fines up to €35M or 7% of worldwide annual turnover.
5 February 2026 — ActiveUK
UK Automated Decision-Making Regime Replaces Article 22
The Data (Use and Access) Act 2025 repealed UK GDPR Article 22 and replaced it with Articles 22A–22D, materially widening the safeguards duty for solely automated significant decisions.
2 August 2026 — ApproachingEU
Transparency, AI Literacy & GPAI Enforcement
Article 50 transparency duties (chatbot disclosure, deepfake labelling) apply, national authorities gain penalty powers, Article 4 AI literacy becomes enforceable, and GPAI model enforcement begins.
~October/November 2026 — ApproachingEG
Egypt PDPL Grace Period Ends
The Executive Regulations to Egypt's Personal Data Protection Law took effect 1 November 2025 with a one-year compliance grace period. Full enforcement, including Article 17's marketing-consent duty, lands around this date.
1 January 2027 — ApproachingCO
Colorado ADMT Act Becomes Enforceable
SB26-189's notice, adverse-decision-explanation, and human-review obligations for consequential automated decisions become live. Aegis Guard's rule is wired now for forward-looking flagging; enforcement itself starts on this date.
2 December 2027 — High-Risk HorizonEU
Annex III High-Risk Obligations (Provisional)
Full high-risk obligations — Article 9 risk management, Article 12 logging, Article 13 transparency, Article 26 deployer duties — covering employment, credit, education, law enforcement, and biometrics.
OngoingALL
ISO/IEC 42001 Certification Pressure
Procurement frameworks in financial services, public sector, and critical infrastructure are beginning to require ISO 42001 conformance as a supply-chain condition, independent of jurisdiction.
Next Step

Know exactly where your
AI fleet stands before a regulator does.

An Aegis Guard Architecture Review is a structured 90-minute session with our compliance engineering team. We map your current MCP server topology against the jurisdictions you actually operate in, identify the highest-priority integration points, and deliver a written risk assessment and deployment plan your General Counsel can sign off on.

Who attends. Your DPO or General Counsel, your CISO or security lead, and the engineer who owns your MCP server.
Format. 90 minutes, video call, NDA-protected — no sales deck.
You leave with. A written risk assessment mapped to your real tool inventory and a deployment plan.

Not ready to talk? Try the live demo first ↗

Available for on-premise, VPC, and air-gapped deployments. NDA-protected review.  ·  Privacy Policy  ·  Security Overview

EU AI Act Regulation (EU) 2024/1689
ISO/IEC 42001:2023 Annex A
HMAC-SHA256 tamper-evident records
Model Context Protocol (MCP) native
On-premise · VPC · Air-gapped deployments