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

# Claude Desktop

> Install AgentCash MCP mode in Claude Desktop.

Follow the [guided install](https://agentcash.dev/install/claude) for the fastest setup, or configure manually below.

<Tabs>
  <Tab title="macOS">
    Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:

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

  <Tab title="Windows">
    Edit `%APPDATA%\Claude\claude_desktop_config.json`:

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

Restart Claude Desktop after saving the file.

## Verify installation

Start a new conversation and ask:

> What is my AgentCash balance?

Claude should call the `get_balance` tool and return your total balance. If you need deposit links or network-specific wallet addresses, it should call `list_accounts`.
