> ## Documentation Index
> Fetch the complete documentation index at: https://docs.itellico.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrations

> Connect third-party services to extend your itellicoAI deployment

export const Screenshot = ({lightSrc, darkSrc, alt, caption, maxWidth = "880px"}) => {
  return <div style={{
    margin: "1rem auto",
    maxWidth,
    width: "100%"
  }}>
      <Frame>
        <img className="block dark:hidden" src={lightSrc} alt={alt} />
        <img className="hidden dark:block" src={darkSrc} alt={alt} />
      </Frame>
      {caption ? <p style={{
    marginTop: "0.5rem",
    fontSize: "0.875rem",
    color: "inherit",
    opacity: 0.8
  }}>
          {caption}
        </p> : null}
    </div>;
};

## Available Integrations

Integrations connect itellicoAI with external tools.

**Access:** Go to **Settings → Developers → Integrations**.

<Screenshot lightSrc="/images/accounts__integrations-light.png" darkSrc="/images/accounts__integrations-dark.png" alt="Integrations page showing the available third-party providers" caption="Open Integrations to connect supported services such as Cal.com and review current connection status." />

## Current Provider Status

<CardGroup cols={3}>
  <Card title="Cal.com" icon="calendar">
    Connect using a saved secret that contains your Cal.com API key, then use booking flows in agents.
  </Card>

  <Card title="Twilio" icon="phone">
    Coming soon in the integrations UI.
  </Card>

  <Card title="ElevenLabs" icon="plug">
    Coming soon in the integrations UI.
  </Card>
</CardGroup>

## Cal.com Integration

Use Cal.com to support appointment booking flows.

### Setup

<Steps>
  <Step title="Open Integrations">
    Navigate to **Settings → Developers → Integrations**.
  </Step>

  <Step title="Open Cal.com">
    Click **Connect** (or **Manage** if already connected) on the Cal.com card.
  </Step>

  <Step title="Select or create a secret">
    Select an existing secret or create a new one that stores your Cal.com API key.
  </Step>

  <Step title="Test connection">
    Run the connection test. The **Connect** action is enabled only after a successful test.
  </Step>

  <Step title="Save connection">
    Confirm the connection. The integration status changes to connected.
  </Step>

  <Step title="Use in agent tools">
    Configure agent booking with [Calendar Booking](/build/tools/booking-calendar).
  </Step>
</Steps>

### What It Enables

Once connected, your agents can use calendar availability and booking workflows through configured tools.

## Secrets

Use [Secrets](/accounts/secrets) when you want to centralize reusable credentials for supported account features instead of re-entering raw values in multiple places.

Today, that same secret-based credential flow is also used in places like SIP trunk authentication, MCP server credentials, and agent-side external actions.

## Webhooks

Webhooks are configured from **Settings → Developers → Webhooks** (separate from the Integrations list).

Use webhooks to push event data to your systems in real time.

* Configure subscriptions: [Webhooks](/accounts/webhooks)
* See event catalog: [Webhook Events](/reference/webhook-events)
* Keep webhook secrets private and rotate when needed

## MCP Servers

MCP server configuration is managed in the agent build experience.

Use [MCP Servers](/build/advanced/mcp-servers) when you need tool/data extensions in Expert workflows.

## Next Steps

<CardGroup cols={2}>
  <Card title="Calendar Booking" icon="calendar-check" href="/build/tools/booking-calendar">
    Configure booking behavior in your agents
  </Card>

  <Card title="Webhooks" icon="webhook" href="/accounts/webhooks">
    Create webhook subscriptions for real-time events
  </Card>

  <Card title="Secrets" icon="lock" href="/accounts/secrets">
    Store reusable credentials for supported workflows
  </Card>

  <Card title="Webhooks Reference" icon="webhook" href="/reference/webhook-events">
    Review supported webhook events and delivery details
  </Card>

  <Card title="API Keys" icon="key" href="/accounts/api-keys">
    Manage credentials for integrations and automation
  </Card>
</CardGroup>
