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

# Cursor

> Install AgentCash MCP mode in Cursor.

## Guided install

Run the installer and select Cursor:

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

This creates the MCP configuration at `.cursor/mcp.json` in your project.

## Manual install

Add the following to `.cursor/mcp.json` in your project root:

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

## Verify installation

Open Cursor and ask the agent:

> What is my AgentCash balance?

The agent 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`.
