Integration Tools
Platform connectors via Composio MCP and structured data generation.
Integration Tools
Tools for connecting HeyCMO to external platforms and generating structured data for SEO.
Composio Helper
Connects HeyCMO to 100+ external platforms via the Model Context Protocol (MCP). This is the bridge between AI agents and real-world marketing platforms.
How It Works
- Composio API key is validated
- Available toolsets are fetched and cached (5-minute TTL)
- Toolsets are injected into agent
generate()calls - Agents can read/write data from connected platforms
Supported Platforms (via Composio)
- Google Analytics (GA4) — Traffic, conversions, user behavior
- Google Search Console — Rankings, impressions, clicks
- Instagram — Post publishing, analytics, engagement
- Facebook — Page management, post publishing
- LinkedIn — Profile posting, analytics
- X (Twitter) — Tweet publishing, analytics
- WordPress — Post creation, management
- Resend — Email sending, analytics
- Slack — Notifications, team alerts
- And 90+ more...
Configuration
// Composio toolsets are cached and auto-refreshed
const toolsets = await getToolsets({
required: false, // Don't fail if unavailable
context: 'agent.generate' // Logging context
});Graceful Degradation
If the Composio API key is missing or the service is unavailable, agents continue operating without external platform access. A warning is logged, but no errors are thrown.
Schema Generator
Generates JSON-LD structured data (Schema.org) for SEO-optimized web pages. Ensures articles, FAQ pages, and products have proper markup for rich snippets in search results.
Supported Schema Types
| Type | Required Fields | Use Case |
|---|---|---|
| Article | headline, author, datePublished | Blog posts, news articles |
| FAQ | questions | FAQ pages, knowledge bases |
| HowTo | name, steps | Tutorial content |
| Product | name, description | Product pages |
| Organization | name, url | Company pages |
| BreadcrumbList | items | Site navigation |
| WebPage | name, url | General pages |
Example Output
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "How to Reduce Customer Churn with Email Automation",
"author": {
"@type": "Person",
"name": "HeyCMO"
},
"datePublished": "2025-01-15",
"dateModified": "2025-01-15"
}Instagram Fallback
Direct Instagram publishing tool that bypasses Composio when needed. Handles image upload and caption posting with hashtag support.