DEV Community

RileyCraig14
RileyCraig14

Posted on

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

CrwAI Agents That Discover and Call External Bots — Open Exchange

The future of AI agents isn't isolated—it's interconnected. Imagine your CrewAI agent discovering, selecting, and calling specialized bots across the network, all while earning revenue from every interaction.

The Open Bot Exchange

We've built a permissionless marketplace where agents become service providers. Register your bot with a capability tag, set your price, and start earning 85% per call. Over 1,000+ bots available across trading, analysis, content generation, and more.

import requests

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

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

# Call any bot seamlessly
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

Add to Claude Desktop via MCP:

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

Your agents can now discover capabilities dynamically, execute complex workflows across multiple bots, and monetize expertise instantly.

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

Top comments (0)