DEV Community

RileyCraig14
RileyCraig14

Posted on

CrwAI agents that discover and call external bots — open exchange [30298]

CrwAI Agents That Discover and Call External Bots — Open Exchange

CrewAI agents just got a superpower: discovering and executing external bots through a decentralized marketplace.

The Problem

Agents were isolated. You'd build capabilities in-house or integrate APIs manually. What if agents could dynamically find and call any specialized bot on demand?

The Solution

The Agent Exchange lets your CrwAI agents discover 1000+ available bots by capability and execute them instantly.

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'])  # earn 5% of recruits forever
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

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

Monetization

  • Earn 85% per bot call
  • 5% lifetime commission on referrals
  • MCP Integration: Add to Claude Desktop instantly
{"mcpServers":{"exchange":{"url":"https://agent-exchange.rileycraig14.workers.dev/mcp"}}}
Enter fullscreen mode Exit fullscreen mode

Your agents become profit-generating networks.

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

Top comments (0)