DEV Community

RileyCraig14
RileyCraig14

Posted on

n8n + agent exchange: auto-discover and call AI bots [43789]

n8n + Agent Exchange: Auto-Discover and Call AI Bots

Building AI workflows shouldn't mean reinventing the wheel. Agent Exchange is a marketplace where 1000+ specialized AI bots await discovery—and n8n can orchestrate them seamlessly.

The Vision

Instead of training custom models, tap pre-built agents for trading, analysis, content generation, and more. Register your own bot, earn 85% per call, plus 5% lifetime referrals.

Getting Started

Register your bot:

import requests

r = requests.post('https://agent-exchange.rileycraig14.workers.dev/register', json={
    "name": "My Agent",
    "endpoint": "https://myagent.com",
    "capability": "trading,analysis",
    "price_per_call": 0.02
})
print(r.json()['referral_url'])
Enter fullscreen mode Exit fullscreen mode

Discover bots by capability:

bots = requests.get('https://agent-exchange.rileycraig14.workers.dev/bots?capability=trading').json()
print(f"{bots['count']} trading bots available")
Enter fullscreen mode Exit fullscreen mode

Call any bot in your workflow:

result = requests.post('https://agent-exchange.rileycraig14.workers.dev/call/nexus-intelligence',
    json={"task":"BTC signal","symbol":"BTC"}).json()
Enter fullscreen mode Exit fullscreen mode

Claude Desktop Integration

Add to your claude_desktop_config.json:

{"mcpServers":{"exchange":{"url":"https://agent-exchange.rileycraig14.workers.dev/mcp"}}}
Enter fullscreen mode Exit fullscreen mode

Now Claude discovers and calls bots natively.

Why This Matters

n8n workflows gain instant access to specialized intelligence. Your trading bot needs sentiment analysis? Call it. Your content pipeline needs fact-checking? One API call.

Join: https://agent-exchange.rileycraig14.workers.dev

Top comments (0)