Aaaa Nexus

Created By
atomadictech2 months ago
Formally verified AI safety APIs for autonomous agents. 75+ endpoints, x402 USDC micropayments, MCP server, A2A protocol. No signup required.
Overview

AAAA Nexus — Formally Verified AI Safety Infrastructure

Live API Verification Endpoints MCP A2A CI Verification License

The only AI safety API where every guarantee is mathematically proved — not benchmarked, not tested, proved.

Production-grade infrastructure for autonomous agents with built-in x402 USDC micropayments, Google A2A protocol, and MCP server compatibility.

Star this repo to follow updates and new endpoint releases.


Try It Now (Zero Setup)

curl https://atomadic.tech/v1/rng/quantum

That's it. No signup, no API key, no SDK. You just got a cryptographically verified random number from a formally verified system.

Expected response
{
  "random": "0x7f3a8c2e9d1b4a6f...",
  "bits": 256,
  "source": "quantum",
  "verified": true,
  "epoch": 17409216
}

More free endpoints:

curl https://atomadic.tech/health
curl https://atomadic.tech/v1/oracle/entropy
curl -X POST https://atomadic.tech/v1/agents/register \
  -H "Content-Type: application/json" \
  -d '{"agent_id": "my-agent", "capabilities": ["inference"]}'

The Problem

Autonomous agents operating without human oversight face six critical infrastructure gaps:

GapRisk
Session hijackingCredential theft via MCP session fixation
Undetected hallucinationsAgents act on fabricated information
No agent accountabilityRogue agents with zero traceability
Unauditable randomness"Random" outputs that can be predicted or replayed
Unbounded delegationInfinite agent spawning without limits
No economic frameworkNo way for agents to pay each other

The Solution

129 API endpoints across 22 product families — every safety claim backed by formal proofs in Lean 4.

Core Products

ProductWhat It Does
Hallucination OracleCertified upper bound on hallucination probability
RatchetGateSession re-keying that prevents session fixation
VeriRandCryptographically verified quantum randomness
Trust Phase OracleMathematical trust scoring with proved ceiling
Topological IdentitySybil-resistant agent verification
AAAA ShieldPost-quantum session security
Agent DiscoveryA2A-compatible agent registry and topology
SLA EngineEnforceable service-level agreements between agents
Agent EscrowTrustless payment escrow for agent-to-agent work
Reputation LedgerOn-chain reputation tracking
Text ProcessingSummarization, sentiment, NER, translation, embeddings (12 endpoints)
Delegation ControlUCAN chains with proved depth limits
Key ManagementGenerate, rotate, and revoke cryptographic keys
Audit TrailTamper-proof logging, trails, and export
Credits & BillingBalance, purchase, usage history

How It Works

sequenceDiagram
    participant Agent
    participant AAAA Nexus
    participant USDC

    Note over Agent,AAAA Nexus: Free Endpoints (no auth)
    Agent->>AAAA Nexus: GET /v1/rng/quantum
    AAAA Nexus-->>Agent: { random, proof, verified: true }

    Note over Agent,USDC: Paid Endpoints (x402 flow)
    Agent->>AAAA Nexus: POST /v1/oracle/hallucination
    AAAA Nexus-->>Agent: HTTP 402 { amount, treasury, chain }
    Agent->>USDC: Send $0.002 USDC
    Agent->>AAAA Nexus: POST /v1/oracle/hallucination + proof
    AAAA Nexus-->>Agent: { hallucination_bound, verified: true }
graph LR
    A[Your Agent] -->|MCP / REST / A2A| B[AAAA Nexus API]
    B --> C[Hallucination Oracle]
    B --> D[RatchetGate]
    B --> E[VeriRand]
    B --> F[Trust Phase Oracle]
    B --> G[Agent Discovery]
    B --> H[Threat Scoring]
    B --> I[Compliance Gates]
    B --> J[Inference + Guard]

    style B fill:#6366f1,stroke:#4f46e5,color:#fff
    style C fill:#10b981,stroke:#059669,color:#fff
    style D fill:#10b981,stroke:#059669,color:#fff
    style E fill:#10b981,stroke:#059669,color:#fff
    style F fill:#10b981,stroke:#059669,color:#fff
    style G fill:#10b981,stroke:#059669,color:#fff
    style H fill:#10b981,stroke:#059669,color:#fff
    style I fill:#10b981,stroke:#059669,color:#fff
    style J fill:#10b981,stroke:#059669,color:#fff

Verify Our Claims

Don't trust us. Verify.

We run automated verification daily against the live API. You can also run it yourself:

git clone https://github.com/atomadictech/aaaa-nexus.git
cd aaaa-nexus
./verify.sh

The verifier checks:

  • All endpoints respond correctly
  • Paid endpoints enforce x402 payment protocol
  • Free endpoints return expected data structures
  • Formal proof fields are present in API responses

See verify.sh for the full script. View CI results.


MCP Server — Add to Claude / Cursor in 30 Seconds

{
  "mcpServers": {
    "aaaa-nexus": {
      "url": "https://atomadic.tech/mcp"
    }
  }
}

Works with Claude Desktop, Claude Code, Cursor, and any MCP-compatible client.


x402 Payment Flow

No signup. No API keys. Agents pay autonomously with USDC.

1. Call any paid endpoint        -> HTTP 402 with payment details
2. Send USDC to treasury         -> Base L2, Polygon, or Solana
3. Retry with payment proof      -> Get result

Or get an API key for bulk calls: https://atomadic.tech/pay

Pricing

Starting at $0.002/call. Credit packs: $4 (500 calls) / $15 (2,000) / $49 (7,500). Credits never expire. Full pricing.


A2A Protocol

Fully compatible with Google A2A:

# Discover capabilities
curl https://atomadic.tech/.well-known/agent.json

# Register your agent
curl -X POST https://atomadic.tech/v1/agents/register \
  -H "Content-Type: application/json" \
  -d '{"agent_id": "my-agent", "capabilities": ["inference"]}'

# View swarm topology
curl https://atomadic.tech/v1/agents/topology

Integration Examples

FrameworkGuideDifficulty
cURLexamples/curl.mdCopy-paste
TypeScriptexamples/typescript.md5 min
Pythonexamples/python.md5 min
MCP (Claude/Cursor)examples/mcp.md30 sec
LangChainexamples/langchain.md10 min
CrewAIexamples/crewai.md10 min
AutoGenexamples/autogen.md10 min
PostmanImport collection1 min

See examples/responses/ for sample API responses.


How AAAA Nexus Compares

AAAA NexusBenchmark-BasedHeuristic Guardrails
Safety proofMathematical (Lean 4)StatisticalRule-based
CoverageAll inputsSampled casesKnown patterns
Agent paymentsx402 USDC (autonomous)NoneNone
MCP + A2ANativeVariesNo
Session securityFormally provedToken-basedToken-based

Full comparison


Documentation

DocDescription
Quick StartUp and running in 5 minutes
PricingTiers, credit packs, x402 rates
Use Cases7 concrete scenarios with code
FAQCommon questions answered
GlossaryFormal verification terminology
ComparisonAAAA Nexus vs alternatives
Product BriefWhat we're building and why
ChangelogVersion history
OpenAPI SpecMachine-readable API spec
Security PolicyResponsible disclosure
ContributingHow to contribute

For AI agents: Read llms.txt for a concise reference or llms-full.txt for complete endpoint documentation.


ResourceURL
Live APIhttps://atomadic.tech
Get API Keyhttps://atomadic.tech/pay
OpenAPI Spechttps://atomadic.tech/openapi.json
MCP Serverhttps://atomadic.tech/mcp
A2A Agent Cardhttps://atomadic.tech/.well-known/agent.json
Health / Statushttps://atomadic.tech/health

Contact


License

Documentation, examples, and the verification script: CC BY-ND 4.0. The underlying API, algorithms, proofs, and infrastructure: Proprietary. This repository contains no source code.

© 2026 Atomadic Tech. All rights reserved.

Server Config

{
  "mcpServers": {
    "aaaa-nexus": {
      "url": "https://aaaa-nexus.atomadictech.workers.dev/mcp"
    }
  }
}
Project Info
Created At
2 months ago
Updated At
2 months ago
Author Name
atomadictech
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Tavily Mcp
@tavily-ai

JavaScript
a year ago
Alloy

20 hours ago