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

> Add the Juno MCP server to Cursor.

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 to Cursor so it can work with your learning content while you build.
</Info>

## Add the Juno MCP server

<Steps>
  <Step title="Open MCP settings">
    In Cursor, go to **Settings → MCP → Add new MCP server**, or edit `~/.cursor/mcp.json` directly.
  </Step>

  <Step title="Add the Juno server">
    Add the following, 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>"
        }
      }
    }
    ```
  </Step>

  <Step title="Authorize">
    Cursor prompts you to sign in to Juno and authorize access. The Juno tools then appear under **Available Tools**.
  </Step>
</Steps>

<SupportContact />

<RelatedPages
  pages={[
{ href: "/mcp/overview", title: "MCP overview" },
{ href: "/mcp/other-clients", title: "Other MCP clients" },
{ href: "/mcp/troubleshooting", title: "Troubleshooting" }
]}
/>
