Cerebro

🌐

🔒

Claude / ChatGPT

Agent-to-Agent

Agent Network

Cerebro Router

Free
$0
Starter
$29
Enterprise

1


curl -X POST https://cerebro.letcareme.com/api/v1/agents/ \
  -H "Content-Type: application/json" \
  -d '{
    "name": "code-gen-agent",
    "endpoint": "http://your-agent:8080",
    "protocol": "mcp",
    "capability_names": "code_generation,code_review"
  }'
2


curl -X POST https://cerebro.letcareme.com/api/v1/routing/decide \
  -H "Content-Type: application/json" \
  -d '{
    "tenant_id": "my-tenant",
    "query": "Write a Python quicksort algorithm"
  }'
3


curl -X POST https://cerebro.letcareme.com/api/v1/tasks \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "code-gen-agent",
    "input": {"task": "quicksort", "language": "python"}
  }'