Formally verified AI safety APIs. 75+ endpoints, pay-per-call via USDC x402, no signup.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"aaaa-nexus": {
"env": {
"AAAA_NEXUS_API_KEY": "an_your_key_here",
"AAAA_NEXUS_AUTOGUARD": "1"
},
"args": [
"-m",
"aaaa_nexus_mcp"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Developer infrastructure for trustworthy agents. 140 MCP tools across 19 categories for trust, security, compliance, RAG, payments, and agent orchestration.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@atomadic/nexus-client' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @atomadic/nexus-client against OSV.dev.
Click any tool to inspect its schema.
DADADelegator Atomadic Developer Agent - routes tasks and verifies in a separate lane
AtomadicIntent interpreter and prompt refiner for self-improving agents
AutopoeticSelf-healing feedback loop pattern for agent enhancement
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
MCP server for Spanning Cloud Backup — M365/GWS/Salesforce backups, restores, audit.
AI agent control of 3D printers — 432 tools for OctoPrint, Moonraker, Bambu, Prusa, Elegoo
MCP server for Kaseya Autotask PSA — companies, tickets, projects, time entries, and more.
On-chain provenance lookup for AnchorRegistry. Resolve AR-IDs, hashes, and full trees. Authless.
MCP Security Weekly
Get CVE alerts and security updates for io.github.AAAA-Nexus/aaaa-nexus-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Developer infrastructure for trustworthy agents. 140 MCP tools across 19 categories for trust, security, compliance, RAG, payments, and agent orchestration.
pip install aaaa-nexus-mcp # Python + Claude / Cursor / Codex MCP
npm install @atomadic/nexus-client # TypeScript / Node / Deno / Bun
curl https://atomadic.tech/health # or skip the SDK entirely
No key needed for the free tier. Grab one at atomadic.tech/pay when you want the paid surface.
Your agent is already writing code, making decisions, and spending tokens. What it cannot do on its own:
AAAA-Nexus does all of that. At the HTTP layer. In one call.
Every (buggy_code → fix) pair your agent produces is a training sample. Contribute it to the shared pool and you get back:
The loop is four calls:
from aaaa_nexus_mcp.client import NexusAPIClient
async with NexusAPIClient(api_key="an_...") as c:
# 1. Capture locally (free, PII-scrubbed, hash-chained)
await c.post("/v1/lora/capture", {"bad": bad, "good": good, "language": "python"})
# 2. Contribute the buffered batch (micro-rebate per accepted sample)
await c.post("/v1/lora/contribute", {"min_quality": 0.6})
# 3. Pull the current community adapter
adapter = await c.get("/v1/lora/adapter/python")
# 4. Claim your reputation reward
await c.post("/v1/lora/reward/claim", {"agent_id": "my-agent-001"})
See examples/lora_flywheel.py for the end-to-end script.
Ordinary RAG pulls whatever the vector index returns. Trusted RAG gates each chunk on:
ctx = await c.post("/v1/rag/augment", {
"query": "latest EU AI Act Annex IV requirements",
"max_results": 5,
"freshness_hours": 168,
"source_policy": "trusted_only",
"required_domains": ["europa.eu", "nist.gov"],
})
# ctx["results"][i] includes: text, source_url, trust_score, receipt_hash
Every response ships with a _guard block: {hallucination, drift, guarded_at}. You never have to run those checks yourself.
See examples/trusted_rag.py for the full cycle including certificate emission.
| # | Capability | Representative endpoints | What it solves |
|---|---|---|---|
| 1 | Trust oracles | /v1/oracle/hallucination, /v1/trust/decay | Hallucination + drift verdicts on any text |
| 2 | Shared LoRA loop | /v1/lora/contribute, /v1/lora/reward/claim | Earn rewards contributing fixes; pull the community adapter |
| 3 | Trusted RAG | /v1/rag/augment, /v1/aibom/drift | Provenance-gated retrieval with receipts |
| 4 | Sys primitives | /v1/sys/trust_gate, /v1/sys/lint_gate, /v1/sys/chain_parity | Numerical invariants for agent self-governance |
| 5 | Compliance certs | `/v1/compliance/eu-ai-a |