Integrate HeyCMO into your own apps, dashboards, and workflows via HTTP.
https://brain.heycmo.ai/mcp/YOUR_CUSTOMER_ID
All requests require your API key in the Authorization header:
Authorization: Bearer hcmo_live_YOUR_API_KEY
POST /tools/call
Content-Type: application/json
{
"tool": "TOOL_NAME",
"args": { ... }
}
curl -X POST https://brain.heycmo.ai/mcp/YOUR_ID/tools/call \
-H "Authorization: Bearer hcmo_live_..." \
-H "Content-Type: application/json" \
-d '{
"tool": "ask_cmo",
"args": {
"question": "What should I post about this week?"
}
}'
curl -X POST https://brain.heycmo.ai/mcp/YOUR_ID/tools/call \
-H "Authorization: Bearer hcmo_live_..." \
-H "Content-Type: application/json" \
-d '{
"tool": "run_research",
"args": {
"date": "2026-03-19"
}
}'
curl -X POST https://brain.heycmo.ai/mcp/YOUR_ID/tools/call \
-H "Authorization: Bearer hcmo_live_..." \
-H "Content-Type: application/json" \
-d '{
"tool": "generate_carousel",
"args": {
"slides": [
{"text": "Tip 1: Start with keywords"},
{"text": "Tip 2: Write the hook first"},
{"text": "Tip 3: Add a clear CTA"}
],
"template": "tip"
}
}'
curl -X POST https://brain.heycmo.ai/mcp/YOUR_ID/tools/call \
-H "Authorization: Bearer hcmo_live_..." \
-H "Content-Type: application/json" \
-d '{
"tool": "run_analytics",
"args": {
"period": "last_7_days"
}
}'
| Tool | Description |
|---|---|
run_research | Run daily research pipeline |
run_content_creation | Create content (may suspend for approval) |
resume_workflow | Approve or reject suspended content |
run_engagement_check | Check and reply to comments/DMs |
run_analytics | Generate cross-channel analytics report |
run_optimization | Run the self-optimization loop |
ask_cmo | Ask the CMO agent any marketing question |
generate_carousel | Create branded carousel images |
generate_reel | Generate short-form video reel |
get_brand_context | Get current brand profile and strategy |
get_content_calendar | View planned and published content |
list_pending_approvals | List content awaiting approval |
text or data field depending on the tool.