🧠 HeyCMO
Tools

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

  1. Composio API key is validated
  2. Available toolsets are fetched and cached (5-minute TTL)
  3. Toolsets are injected into agent generate() calls
  4. 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

TypeRequired FieldsUse Case
Articleheadline, author, datePublishedBlog posts, news articles
FAQquestionsFAQ pages, knowledge bases
HowToname, stepsTutorial content
Productname, descriptionProduct pages
Organizationname, urlCompany pages
BreadcrumbListitemsSite navigation
WebPagename, urlGeneral 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.

On this page