Etermin MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Etermin MCP or direct API to book appointments, check availability, update bookings, and send reminders through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Etermin Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Etermin now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Assign Calendar ServiceTool to assign a service to a calendar in eTermin.
Create AbsenceTool to create an absence (non-working time) for a specific calendar.
Create AnchortimeTool to create anchortimes (recurring time slots) in a calendar.
Create Anchortime by DateTool to create anchortimes by date.
Create AppointmentTool to create a new appointment in eTermin.
Create Appointment via SyncTool to create an appointment via sync in eTermin.
Create Calendar Return TimeTool to create a return time for a calendar.
Create ContactTool to create a new contact in eTermin.
Create ServiceTool to create a new service in eTermin.
Create Service GroupTool to create a new service group in eTermin.
Create UserTool to create a new user.
Create UsermappingTool to create a new usermapping in eTermin.
Create VoucherCreates a new discount voucher in eTermin.
Create WebhookCreates a webhook (web push notification) in eTermin to receive real-time updates about appointments.
Create Working TimeTool to create a new working time slot in eTermin.
Create Working Times DateTool to create a working times date slot for a calendar.
Delete AbsenceTool to delete an absence (non-working time) from a calendar.
Delete AnchortimeDelete an anchortime from eTermin by its ID.
Delete Anchortime By DateDelete an anchortime by date using its ID.
Delete AppointmentDelete an existing appointment by its ID.
Delete Appointment via SyncTool to delete appointments via the sync endpoint.
Delete CalendarDelete a calendar from your eTermin account.
Delete Calendar Return TimeDelete a return time from a calendar.
Delete Calendar ServiceDelete an assigned service from a calendar in eTermin.
Delete ContactDelete a contact from your eTermin account by its contact ID.
Delete ResourceDelete an eTermin resource by type and ID.
Delete ServicePermanently deletes a service from your eTermin account by its ID.
Delete Service GroupDelete a service group from your eTermin account by its ID.
Delete UserDeletes an existing user from the eTermin account.
Delete UsermappingDelete a usermapping by its ID.
Delete VoucherPermanently deletes a voucher from eTermin by its voucher code.
Delete WebhookDelete an existing webhook by its unique identifier.
Delete Working TimesTool to delete working times from a calendar.
Delete Working Times DateTool to delete working times date entries from eTermin.
Get AbsencesTool to retrieve absences (non-working times) for a specific calendar.
Get Anchortime by DateTool to retrieve anchortimes by date.
Get AnchortimesTool to retrieve anchortime details.
Get Appointment SyncTool to synchronize appointments incrementally from eTermin.
Get Bookingpage LogsTool to retrieve bookingpage request logs from eTermin.
Get Calendar Return TimeTool to retrieve return times for a specific calendar.
Get CalendarsTool to retrieve calendars.
Get Calendar Service AssignmentsTool to retrieve calendar service assignments.
Get CompanyTool to retrieve company account details.
Get Contact By IDTool to retrieve a specific contact by ID, external ID, or email.
Get ContactsTool to retrieve a list of contacts.
Get Deleted AppointmentsTool to retrieve a list of deleted appointments from eTermin.
Get Message LogsTool to retrieve message logs from eTermin.
Get Customer RatingsTool to retrieve a list of customer ratings from eTermin.
Get Service By IDTool to retrieve a specific service from eTermin.
Get Service CalendarTool to retrieve calendars for a specific service ID.
Get Service GroupTool to retrieve service group details from eTermin.
Get ServicesTool to retrieve a list of services.
Get Survey ResultsTool to retrieve survey results from eTermin.
Get TimeslotsTool to retrieve available timeslots for a specific calendar on a given date.
Get UsermappingTool to retrieve usermapping information.
Get UsersTool to retrieve a list of users.
Get Working TimesTool to retrieve working times for a specific calendar.
Get Working Times DateTool to retrieve working times for a specific calendar on a specific date.
List AppointmentsTool to retrieve a filtered list of appointments from eTermin in a specified date range.
List VouchersRetrieve all vouchers (discount codes) from your eTermin account.
List WebhooksTool to retrieve webhooks.
Update Service via PUTTool to update a service in eTermin.
Update AbsenceTool to update an absence (non-working time) for a calendar in eTermin.
Update AnchortimeUpdate an existing anchortime in eTermin.
Update Anchortime By DateTool to update anchortimes by date in eTermin.
Update AppointmentTool to update an existing appointment in eTermin.
Update CalendarUpdate an existing calendar in eTermin.
Update Calendar Return TimeTool to update a return time for a calendar in eTermin.
Update ContactTool to update an existing contact in eTermin.
Update ResourceUpdate an existing eTermin resource (contact, service, calendar, user, or voucher).
Update ServiceTool to update an existing service.
Update Service GroupTool to update an existing service group in eTermin.
Update Synchronised AppointmentTool to update a synchronised appointment in eTermin.
Update UsermappingUpdate an existing usermapping in eTermin.
Update VoucherUpdates an existing voucher in eTermin.
Update WebhookUpdate an existing webhook configuration in eTermin.
Update Working TimesTool to update working times for a calendar in eTermin.
Update Working Times DateTool to update working times date for a calendar.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Etermin tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Create a new contact named John Doe in Etermin')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Why Use Composio?

AI Native Etermin Integration

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

Managed Auth

  • Built-in API key management with secure storage
  • Central place to manage, scope, and revoke Etermin 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 Etermin
  • Scoped, least privilege access to Etermin resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Etermin with Composio?

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

Can I use multiple toolkits together?

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

Is Composio secure?

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

What if the API changes?

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

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.