A tool for analyzing RVTools data.
Project description
AI supercharged RVTools Analyzer for Azure VMware Solution
A unified FastAPI application for analyzing RVTools data with both web interface and AI integration capabilities. Provides insights into Azure VMware Solution migration risks through an intuitive web UI and Model Context Protocol (MCP) server for AI tool integration.
Features
- Unified Server: Single application providing both web interface and MCP API
- Web Interface: Upload and analyze RVTools Excel files through a user-friendly interface
- Azure OpenAI Integration: AI-powered risk analysis suggestions with environment variable configuration
- MCP Integration: MCP server capabilities for AI assistants to analyze migration risks
- Risk Assessment: Comprehensive analysis of 14 migration risk categories:
- vUSB devices (blocking)
- Risky disks (dynamic)
- Non-dvSwitch networks (blocking)
- High vCPU/memory VMs (blocking)
- VM snapshots (warning)
- Suspended VMs (warning)
- dvPort configuration issues (warning)
- Non-Intel hosts (warning)
- CD-ROM devices (warning)
- VMware Tools status (warning)
- Large provisioned storage (warning)
- Oracle VMs (info)
- ESX version compatibility (dynamic)
- VM Hardware version compatibility (blocking)
- Shared disks (blocking)
- Clear text passwords (emergency)
- VMkernel networks (warning)
- VM with Fault Tolerance (warning)
AI integration disclaimer
The AI integration in RVTools Analyzer may produce unexpected behavior or inaccuracies in the analysis results.
⚠️ It is strongly recommended to review the output carefully and validate it against known data. Additionally, please ensure that data privacy and compliance requirements are taken into account when using AI tools, as submitted data will be shared with AI systems. ⚠️
The provided tools run locally to generate an analysis report from the uploaded RVTools file. If integrated with AI models, the data is processed and analyzed to deliver deeper insights and recommendations. If your AI models are not running in a local or secure environment, it is essential to verify that data is handled appropriately and in compliance with applicable regulations and your organization’s policies.
Installation and Usage
Prerequisites
Make sure you have uv installed:
# On Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# On macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
Quick Start with uv
Run the unified application with both web UI and MCP API:
# Run directly from PyPI (latest published version)
uv tool run avs-rvtools-analyzer
# Or run from source (current development version)
uv run avs-rvtools-analyzer
The application provides:
- Web interface:
http://127.0.0.1:8000(upload and analyze files) - API documentation:
http://127.0.0.1:8000/docs(interactive OpenAPI docs) - MCP tools: Available at
/mcpendpoint for AI integration
Development Setup
# Clone the repository
git clone https://github.com/lrivallain/avs-rvtools-analyzer.git
cd avs-rvtools-analyzer
# Install dependencies and run in development mode
uv sync --extra dev
uv run avs-rvtools-analyzer --reload --debug
# Or activate the virtual environment
uv shell
avs-rvtools-analyzer --reload --debug
Traditional Installation Methods
From PyPI
You can install RVTools Analyzer directly from PyPI:
# Using uv (recommended)
uv tool install avs-rvtools-analyzer
uv run avs-rvtools-analyzer # run the tool
# Using pip
pip install avs-rvtools-analyzer
avs-rvtools-analyzer # run the tool
From Source
git clone https://github.com/lrivallain/avs-rvtools-analyzer.git
cd avs-rvtools-analyzer
# Using uv (recommended)
uv build
uv tool install dist/avs_rvtools_analyzer-*.whl
# Using pip
pip install .
Azure OpenAI Integration
The application supports Azure OpenAI integration for AI-powered risk analysis suggestions. This feature provides intelligent recommendations for migration risks detected in your RVTools data.
Prerequisites
To use Azure OpenAI integration, you need:
- Azure OpenAI Resource: Create an Azure OpenAI resource in your Azure subscription
- Model Deployment: Deploy a compatible model (e.g., GPT-4, GPT-3.5-turbo) in your Azure OpenAI resource
- API Access: Obtain your endpoint URL and API key from the Azure portal
For detailed setup instructions, see docs/azure-openai-integration.md.
Configuration
Configure Azure OpenAI using environment variables (server-side only):
export AZURE_OPENAI_ENDPOINT="https://your-resource.openai.azure.com/"
export AZURE_OPENAI_API_KEY="your-api-key"
export AZURE_OPENAI_DEPLOYMENT_NAME="gpt-4.1"
Using .env file (recommended for development):
Create a .env file in the project root:
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_API_KEY=your-api-key
AZURE_OPENAI_DEPLOYMENT_NAME=gpt-4.1
Development
Development Environment
# Install development dependencies
uv sync --extra dev
# Run in development mode
uv run avs-rvtools-analyzer --host 127.0.0.1 --port 8000 --reload --debug
Testing
# Run tests
uv run pytest
# Run tests with coverage
uv run pytest --cov=rvtools_analyzer
# Run tests in watch mode (if pytest-watch is installed)
uv add --dev pytest-watch
uv run ptw
Building and Publishing
# Build the package
uv build
# Publish to PyPI (requires authentication)
uv publish
Usage
Running the Application
Start the unified server with both web UI and MCP API:
# Default: runs on http://127.0.0.1:8000
uv run avs-rvtools-analyzer
# Custom host and port
uv run avs-rvtools-analyzer --host 0.0.0.0 --port 9000
Available Interfaces
- Web UI: Upload RVTools files and view analysis results
- API Documentation: Interactive OpenAPI documentation at
/docs - Health Check: System status at
/health - MCP Tools: AI integration endpoints for automated analysis
API Endpoints
The application provides several REST API endpoints:
Analysis Endpoints:
POST /api/analyze- Analyze RVTools file by server file pathPOST /api/analyze-upload- Upload and analyze RVTools Excel filePOST /api/analyze-json- Analyze JSON data for migration risks
Data Conversion:
POST /api/convert-to-json- Convert uploaded Excel file to JSON format
Information Endpoints:
GET /api/risks- List all available risk assessmentsGET /api/sku- Get Azure VMware Solution SKU capabilitiesGET /api/info- Server information and available endpointsGET /health- Health check status
AI Integration Workflow
For AI models and automated analysis, the application supports a flexible workflow:
- Excel to JSON Conversion: Use
/api/convert-to-jsonto convert RVTools Excel files into structured JSON data - JSON Data Analysis: Use
/api/analyze-jsonto analyze the converted JSON data for migration risks - Direct Analysis: Alternatively, use
/api/analyze-uploadfor direct file analysis without conversion - AI based suggestions: Use
/api/ai-suggestionsto get AI-generated suggestions for a migration risks
This workflow enables AI models to process RVTools data in multiple formats and provides maximum flexibility for automated migration assessments.
MCP Tools for AI Integration
The application exposes MCP tools for AI assistants:
analyze_file: Analyze RVTools file by providing a file path on the server.analyze_uploaded_file: Upload and analyze RVTools Excel file.analyze_json_data: Analyze JSON data for migration risks and compatibility issues.convert_excel_to_json: Convert Excel file to JSON format for AI model consumption.list_available_risks: List all migration risks that can be assessed by this tool.get_sku_capabilities: Get Azure VMware Solution (AVS) SKU hardware capabilities and specifications.
Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature-name - Make your changes and add tests
- Run the test suite:
uv run pytest - Opt. Run code quality checks:
uv run black . && uv run isort . && uv run flake8 . - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin feature-name - Submit a pull request
License
This project is licensed under the MIT License. See the LICENSE file for details.
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 avs_rvtools_analyzer-2025.8.6.tar.gz.
File metadata
- Download URL: avs_rvtools_analyzer-2025.8.6.tar.gz
- Upload date:
- Size: 74.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fdaa2a47392a445da93f7451bc2e1f661b8828fbcfc32b5fc89d8d6df6a0336
|
|
| MD5 |
568a95413a16042fe7075ba6f9a5d0f1
|
|
| BLAKE2b-256 |
0e0a6b063b662f3f519e6d24abc945ba5b7aceef63acf230f37fc0468b6d5c34
|
File details
Details for the file avs_rvtools_analyzer-2025.8.6-py3-none-any.whl.
File metadata
- Download URL: avs_rvtools_analyzer-2025.8.6-py3-none-any.whl
- Upload date:
- Size: 66.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17a58d86e4d46c51e5dd99e45540c5e2d62a73733d52840fad071ac002739465
|
|
| MD5 |
211a81081619b3e75d6332d3a105de1a
|
|
| BLAKE2b-256 |
2d2fa6df7f4e27ad101e4c24553aaea6bfc4de1d4f014e2fa3fa5d02d8ad9779
|