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

# Command reference

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>;

This page lists the `anaconda mcp` commands. Each command has a dedicated reference page; select a command to view its options and examples.

## Commands

<GTable cols="20% 80%">
  <GHead>
    <GRow>
      <GTH>Command</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>[`setup`](/docs/cli-reference/anaconda-mcp/commands/setup)</GCell>
      <GCell>Configure an AI coding assistant to use Anaconda MCP Server</GCell>
    </GRow>

    <GRow>
      <GCell>[`remove`](/docs/cli-reference/anaconda-mcp/commands/remove)</GCell>
      <GCell>Remove the Anaconda MCP Server configuration for an AI coding assistant</GCell>
    </GRow>

    <GRow>
      <GCell>[`clients`](/docs/cli-reference/anaconda-mcp/commands/clients)</GCell>
      <GCell>List supported AI coding assistants and their current configuration status</GCell>
    </GRow>
  </GBody>
</GTable>

## Global options

<GTable cols="20% 80%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`-h, --help`</GCell>
      <GCell>Show help for this command</GCell>
    </GRow>
  </GBody>
</GTable>
