> For the complete documentation index, see [llms.txt](https://docs.zetrix.com/en/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zetrix.com/en/developer-resources/zetrix-mcp-server/troubleshooting/debug-mode.md).

# Debug Mode

Enable detailed logging for troubleshooting:

**For NPM Installation:**

```bash
export DEBUG=zetrix:*
npx zetrix-mcp-server
```

**For Source Installation:**

```bash
export DEBUG=zetrix:*
npm run dev
```

**Windows PowerShell:**

```powershell
$env:DEBUG = "zetrix:*"
node dist/index.js
```

***
