Calendarhero MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Calendarhero MCP or direct API to schedule meetings, fetch availability, reschedule events, and automate reminders through natural language.

Calendarhero logoCalendarhero
Api Key

Calendarhero is a powerful scheduling platform that streamlines your calendar management across multiple services. It helps you efficiently schedule, reschedule, and organize meetings without the back-and-forth.

38 Tools

Try Calendarhero now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Calendarhero
Try asking
TOOLS

Supported Tools

Every Calendarhero action and event your agent gets out of the box.

Add Calendar Connection

Add a new calendar directory/connection to the user's CalendarHero account.

Create Contact

Creates a new contact in CalendarHero with the provided contact information.

Create Meeting Request V2

Tool to create a new meeting request in CalendarHero.

Create Webhook

Creates or updates a webhook for a specific event type in CalendarHero.

Delete Contact

Tool to delete a contact from CalendarHero by its unique identifier.

Delete Meeting Task

Tool to delete a meeting task/request from CalendarHero.

Delete Meeting Type

Tool to delete a meeting type from the authenticated user's CalendarHero account.

Delete User Directory

Tool to delete a user directory by its UUID.

Delete Webhook

Tool to delete a webhook subscription for a specific event type.

Fetch Contact

Fetch Contact

Fetch Meeting Details

Tool to fetch details for meetings within a specified timeframe.

Fetch User Profile

Tool to fetch the profile details of the authenticated user.

Get Assistant Message

Tool to retrieve a reply message from the CalendarHero assistant.

Get Contact Count

Tool to get the total count of contacts in CalendarHero.

Get Meeting Categories

Retrieves the user's meeting categories' stats for a specified time period.

Get Meeting Tasks

Retrieves the user's meeting requests/tasks from CalendarHero.

Get Search Result

Tool to get a search result by ID.

Get User Directory

Tool to retrieve a user's directory by its unique identifier.

Get User Organization

Tool to retrieve the authenticated user's organization details.

Get User Savings

Tool to retrieve the authenticated user's savings information from CalendarHero.

Get Webhook Configuration

Tool to get webhook configuration for a specific event type.

Get Webhook Sample

Tool to retrieve a sample webhook payload for a specific event type.

List Meeting Templates

Retrieves all meeting templates (reusable meeting configurations) for the authenticated user.

List Meeting Types

Retrieves all meeting types configured for the authenticated CalendarHero user.

List User Calendars

Tool to list all calendar integrations connected to a user's CalendarHero account.

List User Directories

Tool to retrieve all directories configured for a user.

Search Contact

Tool to search for existing contacts.

Search Integrations

Tool to search across all user integrations for a query term.

Send Assistant Message

Tool to send a user's message into the CalendarHero assistant.

Send Reminder

Sends an email reminder to all contacts/participants about a scheduled meeting request.

Update Contact

Updates an existing contact in CalendarHero with new information.

Update Meeting Types

Tool to update meeting type configurations for the authenticated CalendarHero user.

Update Restricted Apps

Tool to update the authenticated user's restricted apps settings.

Update User

Tool to update the authenticated user's profile information.

Update User Address

Tool to update the authenticated user's address settings by providing latitude and longitude coordinates.

Update User Directory

Tool to update a user's directory in CalendarHero.

Update User Info

Updates the authenticated user's info settings in CalendarHero.

Update Work Location

Tool to update the user's work location settings in CalendarHero.

SETUP GUIDE

Connect Calendarhero MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Schedule a meeting with Jane Doe for next Monday at 10am' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Calendarhero API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Calendarhero Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Schedule a 30-minute meeting with Alex next Tuesday at 10am.'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Calendarhero actions with your Agent

Why Use Composio?

AI Native Calendarhero Integration

  • Supports both Calendarhero MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Calendarhero data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Calendarhero access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Calendarhero
  • Scoped, least privilege access to Calendarhero resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Calendarhero requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Calendarhero.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Calendarhero tool your agent needs.Free to start.

Start building