ruizmr/nexusapi-mcp
18 compute tools for AI agents: web scraping, code execution, ML inference. pip install, MCP server, REST API. 250 free credits.
Platform-specific configuration:
{
"mcpServers": {
"nexusapi-mcp": {
"command": "npx",
"args": [
"-y",
"nexusapi-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Web scraping, sandboxed code execution, ML inference, and 15 more tools. 250 free credits on signup.
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"pip install git+https://github.com/ruizmr/nexusapi-mcp.gitfrom 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")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}| 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*
Loading reviews...