NexusAPI provides 18 compute tools specifically built for AI agents:
- Web Scraping: Fetch any URL → clean text/markdown (5 credits / $0.005)
- Code Execution: Sandboxed Python execution (20 credits / $0.02)
- ML Inference: Sentiment, NER, summarization, zero-shot classification (10 credits / $0.01)
- Data & Utility Tools: Hashing, encoding, regex, QR, UUID, etc.
Agent-native design:
- Self-registration: one POST call → API key + 250 free credits
- MCP manifest for tool discovery
- USDC on Base L2 for payments
Try it:
pip install git+https://github.com/ruizmr/nexusapi-mcp.git
from nexusapi import NexusAPI
api = NexusAPI() # auto-registers
page = api.scrape("https://news.ycombinator.com")
result = api.execute("print(2+2)")
Links: