Claude / ChatGPT
Agent-to-Agent
Agent Network
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" }'
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" }'
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"} }'