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

# Claude Desktop

> Connect Claude Desktop to the live DZap MCP endpoint.

## Setup

<Steps>
  <Step title="Open Claude Desktop MCP config">
    macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
    Windows: `%APPDATA%\\Claude\\claude_desktop_config.json`
  </Step>

  <Step title="Add the DZap MCP entry">
    ```json theme={null}
    {
      "mcpServers": {
        "DZapAI": {
          "command": "npx",
          "args": ["-y", "mcp-remote", "https://nlp-ai-439689868940.europe-north1.run.app/mcp"]
        }
      }
    }
    ```
  </Step>

  <Step title="Restart Claude Desktop">
    Fully quit and relaunch the app.
  </Step>

  <Step title="Run verification prompts">
    Try:

    * `List available DZap tools.`
    * `Use PriceTool for USDC on chain 1.`
  </Step>
</Steps>

## Troubleshooting

<AccordionGroup>
  <Accordion title="No tools appear">
    Verify the config path, JSON syntax, and that `mcp-remote` can be installed via npx.
  </Accordion>

  <Accordion title="Connection fails">
    Check that `https://nlp-ai-439689868940.europe-north1.run.app/mcp` is reachable from your network.
  </Accordion>

  <Accordion title="Tool call errors">
    Start with a simple read-only tool (`PriceTool`) before testing execution-sensitive flows.
  </Accordion>
</AccordionGroup>
