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

# How to Add Pleo MCP as a Custom Connector in ChatGPT

> How a ChatGPT Business, Enterprise, or Edu workspace admin enables custom connectors so users can add Pleo.

export const RememberCallout = ({title, children, icon = "🪢"}) => <div style={{
  backgroundColor: 'var(--recommended-bg)',
  borderLeft: '4px solid #f63b92',
  borderRadius: '10px',
  padding: '18px 22px',
  marginBottom: '20px',
  boxShadow: '1px 1px 3px rgba(0,0,0,0.06)'
}}>
    <div style={{
  display: 'flex',
  alignItems: 'flex-start',
  gap: '14px'
}}>
      <span style={{
  fontSize: '22px',
  lineHeight: '1',
  flexShrink: 0
}}>
        {icon}
      </span>
      <div>
        {title && <div style={{
  fontSize: '16px',
  fontWeight: 600,
  color: 'var(--recommended-title)',
  marginBottom: '6px'
}}>
            {title}
          </div>}
        <div style={{
  fontSize: '14px',
  lineHeight: 1.65
}}>
          {children}
        </div>
      </div>
    </div>
  </div>;

export const NoteCallout = ({title, children, icon = "💡"}) => <div style={{
  backgroundColor: 'var(--recommended-bg)',
  borderLeft: '4px solid #3beaf6',
  borderRadius: '10px',
  padding: '18px 22px',
  marginBottom: '20px',
  boxShadow: '1px 1px 3px rgba(0,0,0,0.06)'
}}>
    <div style={{
  display: 'flex',
  alignItems: 'flex-start',
  gap: '14px'
}}>
      <span style={{
  fontSize: '22px',
  lineHeight: '1',
  flexShrink: 0
}}>
        {icon}
      </span>
      <div>
        {title && <div style={{
  fontSize: '16px',
  fontWeight: 600,
  color: 'var(--recommended-title)',
  marginBottom: '6px'
}}>
            {title}
          </div>}
        <div style={{
  fontSize: '14px',
  lineHeight: 1.65
}}>
          {children}
        </div>
      </div>
    </div>
  </div>;

This page is for admins of a ChatGPT **Business**, **Enterprise**, or **Edu** workspace. Custom connectors are off by default on these plans until an admin enables them.

If you're on ChatGPT Plus or Pro, you can add Pleo yourself without any admin step. See [How to Install the Pleo MCP in ChatGPT](/docs/current/pleo-mcp/how-tos/installation/chatgpt).

<RememberCallout title="Remember">
  Enabling Developer mode unlocks the option to create custom connectors. It doesn't add Pleo or connect anyone's account for them. Each member still needs to add Pleo and sign in themselves.
</RememberCallout>

## Steps

Follow the steps below to enable custom connectors for your workspace.

1. Go to **Workspace Settings → Permissions & Roles → Connected Data**.

2. Enable **Developer mode** (or the equivalent **custom MCP connectors** permission) for the workspace, or for specific roles if you want to limit who can create connectors.

<NoteCallout title="Don't see Developer mode?">
  This setting has rolled out gradually. If you don't see it under Connected Data, check under **Connectors → Draft** or contact OpenAI support to confirm availability for your workspace.
</NoteCallout>

3. Under **Admin → Apps**, review app permissions: set the workspace default and any per-app overrides you need for Pleo once it's added.

Custom connectors are now enabled for your workspace.

***

## What Comes Next?

* [How to Install the Pleo MCP in ChatGPT](/docs/current/pleo-mcp/how-tos/installation/chatgpt)

***

## Related Reading

* **OpenAI's documentation:** [Admin Controls, Security, and Compliance in apps (Enterprise, Edu, and Business)](https://help.openai.com/en/articles/11509118)
* [FAQs](/docs/current/pleo-mcp/get-started/faq)
* [Access & Permissions](/docs/current/pleo-mcp/get-started/access-and-permissions)

***
