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

# Claude Desktop

> Configure o WovePay MCP Server no Claude Desktop

## Configuração

Edite o arquivo de configuração do Claude Desktop:

| SO          | Caminho                                                           |
| ----------- | ----------------------------------------------------------------- |
| **macOS**   | `~/Library/Application Support/Claude/claude_desktop_config.json` |
| **Windows** | `%APPDATA%\Claude\claude_desktop_config.json`                     |

### Remoto (HTTP)

```json theme={null}
{
  "mcpServers": {
    "wovepay": {
      "url": "https://mcp.wovepay.com/mcp",
      "headers": {
        "Authorization": "Bearer wp_live_SUA_CHAVE"
      }
    }
  }
}
```

### Local (stdio)

```json theme={null}
{
  "mcpServers": {
    "wovepay": {
      "command": "node",
      "args": ["/caminho/para/mcp-server/dist/index.js"],
      "env": {
        "MCP_BRAND": "wovepay",
        "WOVEPAY_API_KEY": "wp_live_SUA_CHAVE"
      }
    }
  }
}
```

Reinicie o Claude Desktop após salvar.

## Testar

Pergunte ao Claude:

```text theme={null}
Use a tool debug_api_key do servidor wovepay para verificar se minha API key está funcionando.
```

Ou para criar uma cobrança:

```text theme={null}
Crie uma cobrança PIX de R$ 10,00 com externalReference "teste-mcp" usando createPaymentPix.
```
