You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> For detailed MCP configuration, see the [Usage documentation](https://azure.github.io/azqr/docs/usage/).
425
425
426
+
### Copilot (AI Assistant)
427
+
428
+
Azure Quick Review includes an interactive AI assistant powered by GitHub Copilot for natural language interaction with azqr:
429
+
430
+
```bash
431
+
# Start interactive AI assistant
432
+
azqr copilot
433
+
434
+
# Use a specific model
435
+
azqr copilot --model claude-sonnet-4.5
436
+
437
+
# Resume a previous session
438
+
azqr copilot --resume <session-id>
439
+
```
440
+
441
+
**Prerequisites:**
442
+
1.[GitHub CLI](https://cli.github.com/) installed
443
+
2. Authenticated: `gh auth login`
444
+
3. Active GitHub Copilot subscription
445
+
426
446
## Filtering Recommendations and more
427
447
428
448
You can configure Azure Quick Review to include or exclude specific subscriptions or resource groups and also exclude services or recommendations. To do so, create a `yaml` file with the following format:
Copy file name to clipboardExpand all lines: docs/content/en/docs/Usage/_index.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -409,6 +409,38 @@ azqr show --file report.json --open
409
409
azqr show --file report.xlsx --port 3000
410
410
```
411
411
412
+
## Copilot (AI Assistant)
413
+
414
+
Azure Quick Review includes an interactive AI assistant powered by GitHub Copilot. This command starts a conversational TUI session that connects to GitHub Copilot and exposes azqr tools for natural language interaction.
# Use a specific model (default: claude-sonnet-4.5)
429
+
azqr copilot --model claude-sonnet-4.5
430
+
431
+
# Resume a previous session
432
+
azqr copilot --resume <session-id>
433
+
```
434
+
### Available Tools
435
+
436
+
The assistant can invoke the following azqr tools:
437
+
438
+
- **scan** – Run Azure resource compliance scans
439
+
- **get-recommendations-catalog** – View the azqr recommendations catalog
440
+
- **get-supported-services** – List supported Azure services
441
+
442
+
It also has access to the [Microsoft Learn MCP server](https://learn.microsoft.com/api/mcp) for fetching official Azure documentation.
443
+
412
444
## MCP Server (Model Context Protocol)
413
445
414
446
Azure Quick Review includes a Model Context Protocol (MCP) server that enables AI assistants and tools to interact with azqr functionality. The MCP server can run in two modes:
0 commit comments