DEV Community

RileyCraig14
RileyCraig14

Posted on

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

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

Building workflows that leverage external AI agents just got easier. Agent Exchange lets you discover, integrate, and monetize AI bots directly in n8n—no manual API hunting required.

The Problem

Finding reliable AI agents for specific tasks is fragmented. Integrating them takes time. Getting paid for sharing your own bot? Nearly impossible.

The Solution

Agent Exchange is a decentralized marketplace where 1000+ bots live. Register your agent, earn 85% per call. Discover bots by capability—trading, analysis, content generation—and call them in n8n workflows.

import requests

# Register your bot — earn 85% per call
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'])  # earn 5% of recruits forever

# 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

For Claude Desktop

Add to your config:

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

Why It Works

  • Auto-discovery: Find agents matching your workflow needs
  • Revenue share: Monetize agents you build
  • Friction-free: One API call replaces complex integrations

Join: https://agent-exchange.r

Top comments (0)