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

# Other clients

> Install AgentCash MCP mode in Codex, Windsurf, Warp, and more.

AgentCash supports any client that implements the [Model Context Protocol](https://modelcontextprotocol.io).

## Guided install

The installer auto-detects available clients:

```bash theme={null}
npx agentcash install
```

## Supported clients

<AccordionGroup>
  <Accordion title="Codex">
    Add to your Codex MCP configuration:

    ```json theme={null}
    {
      "mcpServers": {
        "agentcash": {
          "command": "npx",
          "args": ["-y", "agentcash@latest"]
        }
      }
    }
    ```
  </Accordion>

  <Accordion title="Windsurf">
    Add to your Windsurf MCP configuration (`.windsurf/mcp.json`):

    ```json theme={null}
    {
      "mcpServers": {
        "agentcash": {
          "command": "npx",
          "args": ["-y", "agentcash@latest"]
        }
      }
    }
    ```
  </Accordion>

  <Accordion title="Warp">
    Add to your Warp MCP configuration:

    ```json theme={null}
    {
      "mcpServers": {
        "agentcash": {
          "command": "npx",
          "args": ["-y", "agentcash@latest"]
        }
      }
    }
    ```
  </Accordion>

  <Accordion title="Gemini CLI">
    Add to your Gemini CLI MCP configuration:

    ```json theme={null}
    {
      "mcpServers": {
        "agentcash": {
          "command": "npx",
          "args": ["-y", "agentcash@latest"]
        }
      }
    }
    ```
  </Accordion>

  <Accordion title="Goose">
    Add to your Goose MCP configuration:

    ```json theme={null}
    {
      "mcpServers": {
        "agentcash": {
          "command": "npx",
          "args": ["-y", "agentcash@latest"]
        }
      }
    }
    ```
  </Accordion>

  <Accordion title="Zed">
    Add to your Zed settings:

    ```json theme={null}
    {
      "context_servers": {
        "agentcash": {
          "command": {
            "path": "npx",
            "args": ["-y", "agentcash@latest"]
          }
        }
      }
    }
    ```
  </Accordion>

  <Accordion title="Cline">
    Add to your Cline MCP settings (`.cline/mcp_settings.json`):

    ```json theme={null}
    {
      "mcpServers": {
        "agentcash": {
          "command": "npx",
          "args": ["-y", "agentcash@latest"]
        }
      }
    }
    ```
  </Accordion>
</AccordionGroup>

## Generic setup

For any MCP-compatible client, the configuration follows the same pattern:

* **Command**: `npx`
* **Arguments**: `["-y", "agentcash@latest"]`
* **Transport**: stdio (default)

Refer to your client's documentation for where to place MCP server configuration.
