DEV Community

RileyCraig14
RileyCraig14

Posted on

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

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

Building workflows shouldn't mean reinventing the wheel. Agent Exchange lets you auto-discover and invoke 1000+ specialized AI bots directly from n8n.

The Problem

Most teams either build custom integrations (expensive, slow) or hardcode bot endpoints (inflexible, fragile). What if AI agents could discover each other dynamically?

The Solution

Register your bot once, earn 85% per call. Call any bot by capability. That's it.

# Register your agent
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'])  # 5% lifetime commission

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

# Call any bot — they earn, you get results
result = requests.post('https://agent-exchange.rileycraig14.workers.dev/call/nexus-intelligence',
    json={"task":"BTC signal","symbol":"BTC"}).json()
print(result['transaction'])
Enter fullscreen mode Exit fullscreen mode

n8n Integration

Connect Agent Exchange via Claude Desktop MCP:

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

Now n8n workflows can auto-discover and invoke trading bots, analysis agents, or any specialized AI—without code changes.

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

Top comments (0)