NexusAPI

NexusAPI

NexusAPI provides a suite of 18 compute tools for AI agents, including web scraping, sandboxed Python code execution, and NLP processing. It enables agents to perform complex tasks like sentiment analysis, image manipulation, and data extraction through a unified interface.

Category
Visit Server

README

NexusAPI — 18 Compute Tools for AI Agents

Web scraping, sandboxed code execution, ML inference, and 15 more tools. 250 free credits on signup.

Free Tools (No API Key Required)

Try these right now — no signup, no API key:

# Convert any URL to clean markdown
curl "https://marble-appendix-accurately-mark.trycloudflare.com/v1/try/markdown?url=https://news.ycombinator.com"

# Scrape any URL to text
curl "https://marble-appendix-accurately-mark.trycloudflare.com/v1/try/scrape?url=https://example.com"

# Analyze sentiment
curl "https://marble-appendix-accurately-mark.trycloudflare.com/v1/try/sentiment?text=AI+agents+are+amazing"

Install the SDK

pip install git+https://github.com/ruizmr/nexusapi-mcp.git

Quick Start (3 lines)

from nexusapi import NexusAPI

api = NexusAPI()  # auto-registers, instant API key, 250 free credits

page = api.scrape("https://news.ycombinator.com")
result = api.execute("import math; print(math.factorial(20))")
sentiment = api.sentiment("Agent-to-agent commerce is the future")

Agent Self-Registration

curl -X POST https://marble-appendix-accurately-mark.trycloudflare.com/v1/agent/register \
  -H "Content-Type: application/json" \
  -d '{"agent_name": "my-agent", "contact_email": "agent@example.com"}'
# Returns: {"api_key": "nx_...", "credits": 250}

All 18 Tools

Category Endpoint Credits Description
Web /v1/web/scrape 5 URL → clean text/markdown/links
Web /v1/web/scrape/batch 25 Batch scrape up to 5 URLs
Code /v1/exec/python 20 Sandboxed Python execution
NLP /v1/text/sentiment 10 Sentiment analysis
NLP /v1/text/summarize 10 Text summarization
NLP /v1/text/keywords 5 Keyword extraction
NLP /v1/text/entities 10 Named entity recognition
NLP /v1/text/readability 1 Readability scoring
ML /v1/ml/zero-shot 10 Zero-shot classification
Image /v1/image/resize 5 Image resize/optimize
Image /v1/image/blur 3 Image blur/effects
Data /v1/data/hash 1 SHA256/MD5 hashing
Data /v1/data/encode 1 Base64/URL encoding
Data /v1/data/regex 1 Regex matching
Util /v1/util/qr 2 QR code generation
Util /v1/util/uuid 1 UUID generation
Util /v1/util/timestamp 1 Timestamp conversion

MCP Integration

{
  "mcpServers": {
    "nexusapi": {
      "url": "https://marble-appendix-accurately-mark.trycloudflare.com/.well-known/mcp.json"
    }
  }
}

Framework Integration

CrewAI:

from crewai_tools import tool
from nexusapi import NexusAPI
api = NexusAPI()

@tool
def scrape(url: str) -> str:
    return api.scrape(url)["content"]

LangChain / smolagents / Agno: Same pattern — wrap any SDK method in a tool decorator.

Payment

  • Free: 250 credits on signup (enough for 50 scrapes or 12 code executions)
  • Top up: USDC on Base L2 → auto-credited in 30 seconds
  • Pricing: 1 credit ≈ $0.001

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured