Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

ITS Private Cloud MCP Server (Beta)

A Model Context Protocol (MCP) server that provides seamless integration with the University of Toronto's ITS Private Cloud Virtual Server Service (VSS). This server enables AI assistants to manage virtual machines, analyze billing data, monitor performance, and optimize cloud resources through natural language interactions.

What is Model Context Protocol?

The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. Think of it as a universal translator that allows AI models to:

  • Access Real-time Data: Connect to live systems and databases
  • Execute Actions: Perform operations like creating snapshots or managing VMs
  • Maintain Context: Keep track of resources and relationships across conversations
  • Ensure Security: Authenticate and authorize access to sensitive systems

With MCP, your AI assistant becomes a powerful interface to your cloud infrastructure, capable of understanding complex queries like "Show me the most expensive VMs this month and suggest cost optimizations" or "Create a snapshot of the database server before the maintenance window.

Getting Started

Prerequisites

  • Python 3.10 or higher
  • ITS Private Cloud VSS API access token
  • MCP-compatible AI client (Claude Desktop, etc.)
  • fastmcp >= 3.4.4, < 4.0.0 (installed automatically). The upper bound is deliberate: fastmcp 4.x replaces httpx with httpx2 across its HTTP stack and has not been verified against this server.

Upgrading from an older release? No change is required on your side — every tool, resource, and prompt keeps its name, inputs, and output, and the client configuration below works unedited. See the migration map for what changed internally.

Installation

Using uvx

  1. Install uv from Astral or the GitHub README
  2. Install Python using uv python install 3.10
uvx mcp-vss

Configuration

Add the server to your MCP client configuration:

{
  "mcpServers": {
    "vss": {
      "command": "uvx",
      "args": ["mcp-vss"],
      "env": {
        "MCP_VSS_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

Workflows

🖥️ Virtual Machine Management

  • VM Discovery: Find VMs by name, ID, or properties
  • Health Monitoring: Check VM status, performance, and resource utilization
  • Snapshot Management: Create point-in-time backups before changes
  • Power Control: Start, stop, restart, or suspend virtual machines
  • Console Access: Get emergency console links for troubleshooting
  • Storage Management: Create, resize, delete, and reorganize virtual disks

💰 Cost Analysis & Optimization

  • Billing Analysis: Review invoices and identify cost drivers
  • Resource Rightsizing: Find overprovisioned or idle resources
  • Trend Analysis: Track spending patterns over time
  • Optimization Reports: Get actionable recommendations to reduce costs

🔍 Performance Monitoring

  • Real-time Metrics: Monitor CPU, memory, disk, and network usage
  • Trend Analysis: Identify performance patterns and bottlenecks
  • Capacity Planning: Forecast resource needs based on historical data
  • Alerting: Get notifications about performance issues

🛠️ Infrastructure Operations

  • Backup Analysis: Monitor UTORrecover backup sessions and data usage
  • Network Management: View available networks and configurations
  • OS Catalog: Browse supported operating systems for deployments
  • Domain Management: Monitor compute clusters and resource allocation

🎯 Troubleshooting & Support

  • Diagnostic Workflows: Automated troubleshooting guides
  • Issue Resolution: Step-by-step problem-solving assistance
  • Performance Tuning: Optimization recommendations based on metrics
  • Change Management: Safe deployment practices with snapshot integration

Available Tools

Virtual Machine Tools

  • get_vm_info - Retrieve detailed VM information by ID, name, or UUID
  • get_vm_snapshots - List all snapshots for a virtual machine
  • get_vm_performance_metrics - Get CPU, memory, disk, and network metrics
  • get_vm_console_access - Generate console access URLs for emergency access
  • create_vm_snapshot - Create point-in-time VM snapshots with memory options
  • power_control_vm - Control VM power state (start, stop, restart, suspend)
  • resize_vm_resources - Manage VM CPU and memory
  • get_vm_disks - Get VM disk layout and configuration
  • create_vm_disks - Create new virtual disks for VMs
  • resize_vm_disks - Expand virtual disk capacity (cannot shrink)
  • delete_vm_disks - Remove virtual disks from VMs (up to 10 at once)
  • update_vm_disk_scsi - Move disks between SCSI controllers (VM must be powered off)

Billing & Cost Management Tools

  • get_billing_clients - List all billing accounts and clients
  • get_billing_details - Get detailed billing account information
  • get_billing_client_invoices - Retrieve invoice summaries for cost analysis
  • get_billing_client_invoice - Get detailed invoice breakdown and line items
  • get_billing_payment_details - View FIS payment information and cost centers
  • update_billing_payment_details - Update billing payment details and cost centers

Backup & Data Management Tools

  • get_client_backup_host_sessions - Analyze UTORrecover backup sessions and data usage
  • analyze_cost_optimization - Generate cost optimization recommendations (planned)

Available Prompts

Performance Analysis

  • analyze_vm_performance - Comprehensive performance analysis with optimization recommendations
  • troubleshoot_vm_issues - Generate diagnostic guides for specific VM problems

Cost & Financial Analysis

  • cost_optimization_report - Detailed cost analysis with ROI calculations and savings opportunities
  • backup_analysis_report - Backup strategy analysis and cost optimization for UTORrecover

Available Resources

Infrastructure Resources

  • its://vms - Complete virtual machine inventory (up to 200 VMs)
  • its://vms/{vm_id} - Detailed information for specific virtual machines
  • its://vms/utorrecover - VMs protected by UTORrecover backup service
  • its://domains - Compute domains and cluster information
  • its://networks - Available network configurations and VLANs
  • its://os - Supported operating system catalog
  • its://os/{full_name} - Filtered OS listings by name or family

Billing Resources

  • its://clients - Complete billing client directory with account details

Example Usage

VM Management

# Find and analyze a specific VM
"Show me details about the VM-Name and its recent performance"

# Create a snapshot before maintenance
"Create a snapshot of vm-12345 named 'pre-maintenance' before tomorrow's update"

# Monitor performance issues
"Check the CPU and memory usage for VM-12345 in the last 24 hours"

# Storage management
"Show me the disk layout for VM-12345 and add a 100GB disk"
"Resize the disk on unit 2 of vm-web-server to 500GB"
"Move disk unit 3 to SCSI controller 1 for better load balancing"

Cost Analysis

# Monthly cost review
"Show me this month's billing for client DEPT-IT and identify the top cost drivers"

# Optimization opportunities
"Analyze our VM costs over the last 90 days and suggest optimization opportunities"

# Budget planning
"What's our trending monthly spend and projected costs for next quarter?"

Operations & Troubleshooting

# Backup analysis
"Review the UTORrecover backup sessions for db-server-01.utoronto.ca in the last month"

# Performance troubleshooting
"The application server is running slowly - help me diagnose the issue"

# Resource planning
"Show me available networks and OS options for deploying a new development environment"

Security & Best Practices

  • API Token Security: Store tokens securely using environment variables
  • Least Privilege: Request only necessary permissions for your use case
  • Snapshot Hygiene: Remove temporary snapshots after validation
  • Cost Monitoring: Regularly review billing and set up alerts for unusual spending
  • Change Management: Always create snapshots before making significant changes

Engineering Governance

Project delivery and review standards are defined in .specify/memory/constitution.md. Implementation plans and pull requests are expected to include constitution compliance checks.

Support & Documentation

  • API Documentation: VSS API Reference
  • MCP Specification: Model Context Protocol
  • Issue Tracking: Report bugs and feature requests through appropriate channels
  • Best Practices: Follow University of Toronto IT policies and procedures

License

This project follows University of Toronto software licensing policies.


Note: This is a beta release. Features and APIs may change. Please test thoroughly in non-production environments.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_vss-2026.8.0.dev0.tar.gz (388.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_vss-2026.8.0.dev0-py3-none-any.whl (59.7 kB view details)

Uploaded Python 3

File details

Details for the file mcp_vss-2026.8.0.dev0.tar.gz.

File metadata

  • Download URL: mcp_vss-2026.8.0.dev0.tar.gz
  • Upload date:
  • Size: 388.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.13

File hashes

Hashes for mcp_vss-2026.8.0.dev0.tar.gz
Algorithm Hash digest
SHA256 08429f9ccb35177713a405ed63162530598e6ac470e652ee4ce0997803965163
MD5 6bb96e60d50a241e1ab425c059722030
BLAKE2b-256 25894070a32a65049d41965bf2e56769357780ec032406ddadbcf7ce8955eba4

See more details on using hashes here.

File details

Details for the file mcp_vss-2026.8.0.dev0-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_vss-2026.8.0.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 b67886ad23da83f40e0dbd58c519c36cf9fc596d32b663ab7e13f3e20798dcc9
MD5 9faa5e146d7c84de03c12e7740a0b18b
BLAKE2b-256 e21ae29d5ddd13a47aa4c1ec6c922d99bbd8d42f74745ba37474155d397e018c

See more details on using hashes here.

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page