> ## 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 Claude

> Add the Juno MCP server as a custom connector in Claude.

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 custom connector in Claude — on the desktop app, claude.ai, or Cowork — to search your learning content and build training in a conversation.
</Info>

## Add the Juno connector

<Steps>
  <Step title="Open connector settings">
    In Claude (desktop or claude.ai), go to **Settings → Connectors → Add custom connector**.
  </Step>

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

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

  <Step title="Authorize">
    Select **Add**, then complete the Juno sign-in and authorization flow. No API key to manage.
  </Step>
</Steps>

<Note>
  On Team and Enterprise plans, a workspace owner adds connectors from **Organization settings → Connectors**. Claude connects from Anthropic's cloud, so the Juno MCP server must be reachable over the public internet — it is, by default.
</Note>

## Try it

Ask Claude something like:

> "Search our Juno library for onboarding courses and summarize what we already have."

<SupportContact />

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