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

# Connect ChatGPT

> Add the Juno MCP server as a connector in ChatGPT.

export const RelatedPages = ({pages = []}) => {
  if (pages.length === 0) return null;
  return <>
      <br />
      <strong>Related articles</strong>
      <CardGroup cols={2}>
        {pages.map(page => <Card title={page.title} href={page.href} key={page.href} />)}
      </CardGroup>
    </>;
};

export const SupportContact = () => {
  return <Info title="Still need help?">
      Contact us at <a href="mailto:support@junojourney.com">support@junojourney.com</a> or use the support widget in Juno.
    </Info>;
};

<Info>
  Add Juno as a connector in ChatGPT to search your learning content and build training in a conversation.
</Info>

## Add the Juno connector

<Steps>
  <Step title="Open connector settings">
    In ChatGPT, open **Settings → Connectors**. Custom MCP connectors are available on ChatGPT Business, Enterprise, and Edu — and for Pro users with developer mode enabled.
  </Step>

  <Step title="Add a custom connector">
    Choose to add a custom MCP server.
  </Step>

  <Step title="Enter the Juno MCP server">
    Name the connector **Juno Journey**, then paste the URL, replacing `<your-workspace>` with your Juno subdomain:

    ```
    https://mcp-prod.the-juno.com/mcp?workspace=<your-workspace>
    ```
  </Step>

  <Step title="Authorize">
    Complete the Juno sign-in and authorization flow. The Juno connector then appears in the composer.
  </Step>
</Steps>

<Note>
  For an organization, a workspace admin adds connectors in ChatGPT's workspace settings. Availability and exact steps depend on your ChatGPT plan — see OpenAI's connector documentation for the latest.
</Note>

## Try it

> "Find our latest security-awareness course in Juno and draft an announcement for it."

<SupportContact />

<RelatedPages
  pages={[
{ href: "/mcp/overview", title: "MCP overview" },
{ href: "/mcp/security", title: "Security & permissions" },
{ href: "/mcp/troubleshooting", title: "Troubleshooting" }
]}
/>
