Skip to content

Releases: solhammer/agentoolbox

v1.0.0 — agent-toolbox.ai Launch 🚀

Choose a tag to compare

@solhammer solhammer released this 14 Jul 01:10

agent-toolbox.ai is live

The quality layer for AI agents. Catch hallucinated packages, block bad LLM outputs, and cut token waste — before your agent breaks production.

API: https://api.agent-toolbox.ai
Website: https://agent-toolbox.ai

Services

  • Package Validator POST /v1/validate/imports — Checks AI-generated imports against PyPI, npm, crates.io, Go live registries. 19.7% of AI packages are hallucinated (USENIX 2025).
  • Hallucination Firewall POST /v1/verify — Returns PASS/FLAG/BLOCK with SHA-256 certificate. Catches bad packages, dead URLs, malformed citations, numeric contradictions.
  • Context Distiller POST /v1/distill — TF-IDF importance scoring compresses bloated agent contexts to a token budget.

MCP Integration

Works with Claude Desktop, Warp, and Cursor out of the box via three MCP tools: validate_imports, verify_output, distill_context.

SOL Payments

Agents pay autonomously on-chain. No subscriptions, no invoices.

Endpoint SOL per call
/v1/validate/imports 0.0001 SOL
/v1/verify 0.0002 SOL
/v1/distill 0.0001 SOL

Service wallet: 8qXedRydihKEETqU64UXtG2sYZaUhwR4HBFz4Suu27CV
Pricing discovery: GET /v1/pricing

Free tier

10 calls per IP — no auth needed.

curl -X POST https://api.agent-toolbox.ai/v1/validate/imports \
  -H 'Content-Type: application/json' \
  -d '{"language":"python","code":"import numpy\nfrom ghostpkg import magic"}'