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

# anaconda mcp clients

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

## Usage

```sh theme={null}
anaconda mcp clients [OPTIONS]
```

## Description

Lists all supported AI coding assistants and shows whether Anaconda MCP is currently configured for each, at both the global and project levels.

## Supported clients

<GTable cols="34% 33% 33%">
  <GHead>
    <GRow>
      <GTH>Client identifier</GTH>
      <GTH>AI coding assistant</GTH>
      <GTH>Supports project scope</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`claude-desktop`</GCell>
      <GCell>Claude Desktop</GCell>
      <GCell>No</GCell>
    </GRow>

    <GRow>
      <GCell>`claude-code`</GCell>
      <GCell>Claude Code</GCell>
      <GCell>Yes</GCell>
    </GRow>

    <GRow>
      <GCell>`cursor`</GCell>
      <GCell>Cursor</GCell>
      <GCell>Yes</GCell>
    </GRow>

    <GRow>
      <GCell>`vscode`</GCell>
      <GCell>VS Code</GCell>
      <GCell>Yes</GCell>
    </GRow>

    <GRow>
      <GCell>`opencode`</GCell>
      <GCell>Opencode</GCell>
      <GCell>Yes</GCell>
    </GRow>

    <GRow>
      <GCell>`windsurf`</GCell>
      <GCell>Windsurf</GCell>
      <GCell>No</GCell>
    </GRow>
  </GBody>
</GTable>

## Options

<GTable cols="30% 20% 50%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Default</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`--project-dir <PATH>`</GCell>
      <GCell>CWD</GCell>
      <GCell>Project directory to check for project-scoped configuration</GCell>
    </GRow>

    <GRow>
      <GCell>`--json`</GCell>

      <GCell />

      <GCell>Output the result as JSON</GCell>
    </GRow>

    <GRow>
      <GCell>`-h, --help`</GCell>

      <GCell />

      <GCell>Show help for this command</GCell>
    </GRow>
  </GBody>
</GTable>

## Examples

**List all supported AI coding assistants**

```sh theme={null}
anaconda mcp clients
```

**Output as JSON**

```sh theme={null}
anaconda mcp clients --json
```

**Check configuration for a specific project directory**

```sh theme={null}
anaconda mcp clients --project-dir /path/to/project
```
