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

# Other MCP clients

> Connect any MCP-compatible client — Gemini Enterprise and more — to Juno.

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>
  Any MCP-compatible client can connect to Juno using the hosted server URL.
</Info>

## Standard configuration

Most clients use a JSON config with an `mcpServers` block. Add Juno, replacing `<your-workspace>` with your Juno subdomain:

```json theme={null}
{
  "mcpServers": {
    "juno-journey": {
      "type": "http",
      "url": "https://mcp-prod.the-juno.com/mcp?workspace=<your-workspace>"
    }
  }
}
```

On first connection, you sign in to Juno and authorize access over OAuth 2.1.

<Tip>
  If you connect to `https://mcp-prod.the-juno.com/mcp` without `?workspace=<your-workspace>`, each user will be asked for their workspace subdomain during sign-in.
</Tip>

## Client-specific notes

* **Gemini Enterprise** — add Juno as an MCP server in your Gemini Enterprise admin settings, using the same URL shown above.
* **Command-line clients** — many support a one-line add, e.g. `claude mcp add --transport http juno-journey "https://mcp-prod.the-juno.com/mcp?workspace=<your-workspace>"`.

<SupportContact />

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