Azure VMware Solution (AVS) SKU exploration plugin for az-scout
Project description
az-scout-plugin-avs-sku
az-scout plugin for Azure VMware Solution (AVS) SKU exploration.
Plugin role
This plugin helps compare AVS SKUs by combining:
- technical specs (CPU, RAM, cores, architecture, vSAN) bundled as static data,
- regional retail pricing (PAYG and reservation monthly equivalents),
- generation labels (Generation 1 / Generation 2 when applicable by region).
Features
- AVS SKU tab (
AVS SKU) with BYOL toggle and pricing display mode selector. - Pricing scope selector: public prices list, or selected subscription scope.
- AVS generation awareness.
- Chat integration:
- MCP tools:
avs_sku_tool,avs_sku_technical_data_tool - custom chat mode:
avs-sku-advisor - default-mode addendum for AV* SKU interpretation.
- MCP tools:
REST API
Base path (mounted by az-scout):
/plugins/avs-sku
Endpoints
GET /plugins/avs-sku/technical-skus
Returns the raw AVS SKU technical specifications (no pricing, no region context).
Response shape:
[
{
"name": "AV36",
"cores": 36,
"ram": 576,
"cpu_model": "Intel Xeon Gold 6140",
"cpu_architecture": "Skylake",
"cpu_speed_ghz": 2.3,
"cpu_turbo_speed_ghz": 3.7,
"cpu_number": 2,
"logical_threads_with_hyperthreading": 72,
"vsan_architecture": "OSA",
"vsan_cache_capacity_in_tb": 3.2,
"vsan_cache_storage_technology": "NVMe",
"vsan_capacity_tier_in_tb": 15.2,
"vsan_capacity_tier_storage_technology": "SSD"
}
]
GET /plugins/avs-sku/skus
Query parameters
region(optional, string): Azure region key (for exampleeastus).byol(optional, bool, defaulttrue): include BYOL pricing rows.sku(optional, string): filter SKUs by name fragment.pricing_source(optional, string, defaultpublic):publicorsubscription.subscription_id(optional, string): selected subscription whenpricing_source=subscription.
Behavior notes
- If
regionis omitted, response still includes technical SKU data, but no regional pricing lookup. - Current pricing retrieval uses Azure Retail Prices API.
pricing_sourceandsubscription_idare preserved in response metadata for scope continuity.
Response shape (summary)
{
"region": "eastus",
"byol": true,
"sku_filter": "AV64",
"pricing_source": "public",
"subscription_id": "",
"source": {
"technical": "bundled (az-scout-plugin-avs-sku)",
"pricing": "https://prices.azure.com/api/retail/prices"
},
"items": [
{
"name": "AV64",
"technical": { "...": "..." },
"generation_labels": ["Generation 1", "Generation 2"],
"stretched_cluster": false,
"available_in_region": true,
"price": {
"found": true,
"byol": true,
"currency_code": "USD",
"payg_hour": 12.34,
"payg_month": 9008.2,
"reservation_1y_month": 7000.0,
"reservation_3y_month": 5400.0,
"reservation_5y_month": 4900.0
}
}
]
}
MCP tools
avs_sku_technical_data_tool
Returns AVS SKU technical specifications (CPU, RAM, vSAN) as a JSON string. No parameters.
avs_sku_tool
Parameters
region: str | None = Nonebyol: bool = Truesku: str | None = Nonepricing_source: str = "public"subscription_id: str | None = None
Return value
- Returns a JSON string (serialized payload) with the same structure as the REST endpoint.
Setup
uv pip install az-scout-plugin-avs-sku
az-scout # plugin is auto-discovered
For development:
git clone https://github.com/az-scout/az-scout-plugin-avs-sku
cd az-scout-plugin-avs-sku
uv sync --group dev
uv pip install -e .
az-scout # plugin is auto-discovered
Structure
src/az_scout_avs_sku/
├── __init__.py
├── avs_data.py
├── routes.py
├── tools.py
└── static/
├── css/avs-sku.css
├── data/sku.json
├── html/avs-sku-tab.html
└── js/avs-sku-tab.js
Quality checks
uv run ruff check src/ tests/
uv run ruff format --check src/ tests/
uv run mypy src/
uv run pytest
Copilot support
The .github/copilot-instructions.md file provides context to GitHub Copilot about
the plugin structure, conventions, and az-scout plugin API.
Using AVS SKU data from another plugin
Other az-scout plugins can consume AVS SKU technical data by adding this plugin as a dependency.
1. Add the dependency
In your plugin's pyproject.toml:
[project]
dependencies = [
"az-scout>=2026.3.4",
"az-scout-plugin-avs-sku",
# ...
]
2. Import directly (recommended for backend code)
from az_scout_avs_sku.avs_data import get_avs_sku_technical_data
skus = get_avs_sku_technical_data()
# Returns: list[dict[str, Any]] — the full list of AVS SKU specs
3. Call the API endpoint (recommended for frontend code)
const response = await fetch("/plugins/avs-sku/technical-skus");
const skus = await response.json();
// Returns: array of SKU objects
4. Use the MCP tool (for AI chat integrations)
The avs_sku_technical_data_tool is automatically available in the AI chat when both plugins are installed.
License
Disclaimer
This tool is not affiliated with Microsoft. All capacity, pricing, and availability information is indicative and not a guarantee of deployment success. Values are dynamic and may change between planning and actual deployment. Always validate in official Microsoft sources and in your target tenant/subscription.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file az_scout_plugin_avs_sku-2026.3.5.tar.gz.
File metadata
- Download URL: az_scout_plugin_avs_sku-2026.3.5.tar.gz
- Upload date:
- Size: 126.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a03cc078e1c68d6ade0edbdbb185481ecfb553cf92562841d397918c28acfaa7
|
|
| MD5 |
8d4f9954889068b85746ba07a7c71e4d
|
|
| BLAKE2b-256 |
433a669939ed23e297e46bb5b3b94ff26c2999bf51c62997cfd0812b52628ec4
|
Provenance
The following attestation bundles were made for az_scout_plugin_avs_sku-2026.3.5.tar.gz:
Publisher:
publish.yml on az-scout/az-scout-plugin-avs-sku
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
az_scout_plugin_avs_sku-2026.3.5.tar.gz -
Subject digest:
a03cc078e1c68d6ade0edbdbb185481ecfb553cf92562841d397918c28acfaa7 - Sigstore transparency entry: 1185825420
- Sigstore integration time:
-
Permalink:
az-scout/az-scout-plugin-avs-sku@c78fe6c9eb316b9e00e4c210994542323d2685d0 -
Branch / Tag:
refs/tags/v2026.3.5 - Owner: https://github.com/az-scout
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c78fe6c9eb316b9e00e4c210994542323d2685d0 -
Trigger Event:
push
-
Statement type:
File details
Details for the file az_scout_plugin_avs_sku-2026.3.5-py3-none-any.whl.
File metadata
- Download URL: az_scout_plugin_avs_sku-2026.3.5-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a01440fd61cc767bba022d5c5769ee1273f09b13e114649942df5836a46a0172
|
|
| MD5 |
27f732ad82c89e5fe49814c2fe81a1a7
|
|
| BLAKE2b-256 |
c6fd57747762b72f89a5bbc68d45e96cf26869e2c8c577775f82b2991b1d92e3
|
Provenance
The following attestation bundles were made for az_scout_plugin_avs_sku-2026.3.5-py3-none-any.whl:
Publisher:
publish.yml on az-scout/az-scout-plugin-avs-sku
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
az_scout_plugin_avs_sku-2026.3.5-py3-none-any.whl -
Subject digest:
a01440fd61cc767bba022d5c5769ee1273f09b13e114649942df5836a46a0172 - Sigstore transparency entry: 1185825430
- Sigstore integration time:
-
Permalink:
az-scout/az-scout-plugin-avs-sku@c78fe6c9eb316b9e00e4c210994542323d2685d0 -
Branch / Tag:
refs/tags/v2026.3.5 - Owner: https://github.com/az-scout
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c78fe6c9eb316b9e00e4c210994542323d2685d0 -
Trigger Event:
push
-
Statement type: