Sponsored by Deepsite.site

Aaaa Nexus

Created By
atomadictecha month 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"
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Serper MCP ServerA Serper MCP Server
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
DeepChatYour AI Partner on Desktop
CursorThe AI Code Editor
Amap Maps高德地图官方 MCP Server
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Playwright McpPlaywright MCP server
Tavily Mcp
WindsurfThe new purpose-built IDE to harness magic
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
ChatWiseThe second fastest AI chatbot™
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。