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

# Organization management

export const GCell = ({children, className}) => <div className={`grid-table-cell ${className || ""}`} role="cell">
    {children}
  </div>;

export const GTH = ({children, className}) => <div className={`grid-table-th ${className || ""}`} role="columnheader">
    {children}
  </div>;

export const GRow = ({children}) => <div className="grid-table-row" role="row">{children}</div>;

export const GBody = ({children}) => <div className="grid-table-body" role="rowgroup">{children}</div>;

export const GHead = ({children}) => <div className="grid-table-head" role="rowgroup">{children}</div>;

export const GTable = ({children, className, cols}) => <div className={`grid-table not-prose overflow-hidden rounded-2xl ${className || ""}`} style={{
  "--grid-table-cols": cols
}} role="table">
    {children}
  </div>;

An organization is a group of Anaconda.com accounts with a managed set of rights and permissions. Creating an organization for your team in Anaconda.com allows you to:

* Provide a common collaboration space
* Ensure consistent tooling
* Manage access and costs

<Note>
  Anaconda.com users can create and belong to multiple organizations. However, [Enterprise Managed Users](/anaconda-platform/cloud/admin/integrations/esso#enterprise-managed-users) are scoped to a single organization and cannot be added to another.
</Note>

<Tip>
  If you're working with an Anaconda representative, they will create and subscribe your organization for you.
</Tip>

## Creating an organization

1. [Sign in to Anaconda.com](https://auth.anaconda.com/ui/login?return_to=https://anaconda.com/app/).

2. Navigate to your [Organizations](https://anaconda.com/app/profile/organizations) page.

3. Click **Create Organization**.

   <Frame>
     <img src="https://mintcdn.com/anaconda-29683c67/38V1XTpdo_dUNFXe/images/ap_create_new_org.png?fit=max&auto=format&n=38V1XTpdo_dUNFXe&q=85&s=165c0b71361b1bf3d3031c5c89b5f95b" alt="Create new organization button" width="1922" height="913" data-path="images/ap_create_new_org.png" />
   </Frame>

4. Follow the on-screen instructions to set up your organization. Don't worry if you don't have all the necessary information; you can come back and complete your organization's information at a later time.

   <Note>
     As the creator, you are the owner and default admin of the organization.

     ***

     Your *Organization Name* is the publicly displayed name of your organization. It can be changed at any time after your organization is created.

     ***

     Your *Organization ID* can be found in your organization's Uniform Resource Locator (URL) identifier: `https://anaconda.com/app/organizations/<ORG_ID>/<CHANNEL_NAME>`.

     The Organization's URL must be unique and cannot be changed.
   </Note>

## Subscribing your organization

For information and help with managing subscriptions, see [Subscriptions](/anaconda-platform/cloud/admin/subscriptions).

## Organization settings

Organization administrators can control which Anaconda Platform and Anaconda Desktop features are available to their members.

1. From the <Icon icon="building" iconType="regular" /> **Org Profile** page, select <Icon icon="pen-to-square" iconType="solid" /> **Edit Organization Settings** beside the organization name.

   <Frame>
     <img src="https://mintcdn.com/anaconda-29683c67/6tejmKOgBEue4gFz/images/ap_organization_settings.png?fit=max&auto=format&n=6tejmKOgBEue4gFz&q=85&s=21af64afca5947fae53f2c0145a68560" alt="Edit organization settings button" width="1922" height="1013" data-path="images/ap_organization_settings.png" />
   </Frame>

2. Toggle settings `ON` or `OFF` as needed.

3. Click **Save Changes**.

<Warning>
  Organization settings are enforced at the account level. If a user belongs to more than one organization, disabling a feature in any one of them removes that user's access to it entirely.
</Warning>

### Available organization settings

<GTable cols="30% 70%">
  <GHead>
    <GRow>
      <GTH>Setting</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>[Agent Studio](/tools/anaconda-desktop/agent-studio/main)</GCell>
      <GCell>Controls your organization members' access to Anaconda Desktop's Agent Studio feature.</GCell>
    </GRow>

    <GRow>
      <GCell>[AI Navigator](/tools/ai-navigator/main)</GCell>
      <GCell>Controls your organization members' access to Anaconda AI Navigator.</GCell>
    </GRow>

    <GRow>
      <GCell>[Anaconda Assistant](/tools/anaconda-notebooks/anaconda-toolbox/anaconda-assistant)</GCell>
      <GCell>Controls your organization members' access to the Anaconda AI Assistant in Anaconda Notebooks.</GCell>
    </GRow>

    <GRow>
      <GCell>[Anaconda Desktop](/tools/anaconda-desktop/getting-started-desktop)</GCell>
      <GCell>Controls your organization members' access to Anaconda Desktop.</GCell>
    </GRow>

    <GRow>
      <GCell>[Anaconda MCP](/tools/anaconda-desktop/mcp)</GCell>
      <GCell>Controls your organization members' access to the Anaconda MCP server.</GCell>
    </GRow>

    <GRow>
      <GCell>[Cloud Notebooks](/tools/anaconda-notebooks/getting-started)</GCell>
      <GCell>Controls your organization members' access to Anaconda Notebooks.</GCell>
    </GRow>

    <GRow>
      <GCell>[Community Channel](/anaconda-platform/cloud/admin/channels#channel-types)</GCell>
      <GCell>Enables or disables the `community` channel for your organization.</GCell>
    </GRow>

    <GRow>
      <GCell>[EduBlocks](https://docs.edublocks.org/)</GCell>
      <GCell>Controls your organization members' access to EduBlocks.</GCell>
    </GRow>

    <GRow>
      <GCell>[Environments](/anaconda-platform/cloud/admin/environments)</GCell>
      <GCell>Enables or disables environment logging and scanning for your organization.</GCell>
    </GRow>

    <GRow>
      <GCell>[Forum](https://forum.anaconda.com)</GCell>
      <GCell>Controls your organization members' access to the Anaconda forum.</GCell>
    </GRow>

    <GRow>
      <GCell>[PyScript](https://pyscript.com)</GCell>
      <GCell>Controls your organization members' access to PyScript.</GCell>
    </GRow>
  </GBody>
</GTable>
