Skip to main content

API Keys

Your API key authenticates requests to the DebuggAI API and MCP server. Each account has one key at a time.

Viewing Your Key​

Navigate to /api-keys (or click your avatar at the bottom of the sidebar and select API Keys). The key is masked by default — click the eye icon to reveal it.

warning

This key grants full access to the DebuggAI API. Keep it secure and never commit it to source control.

Copying the Key​

Click the copy icon to copy the full key to your clipboard.

Regenerating the Key​

Click Regenerate. This immediately invalidates the old key — any integrations using it will break until updated.


MCP Server Setup​

The API Keys page includes a ready-to-paste config block for the DebuggAI MCP server. Add it to your MCP client configuration (e.g. Claude Desktop's claude_desktop_config.json):

{
"mcpServers": {
"debugg-ai-mcp": {
"command": "npx",
"args": ["-y", "@debugg-ai/debugg-ai-mcp"],
"env": {
"DEBUGGAI_API_KEY": "your-key-here"
}
}
}
}

For full MCP setup instructions, see MCP Server.