get_monthly_usage_summary
Retrieve a detailed breakdown of monthly cloud service usage and associated costs for Vultr infrastructure, enabling informed budget tracking and resource management.
Instructions
Get monthly usage and cost summary.
Args: year: Year (e.g., 2024) month: Month (1-12)
Returns: Monthly usage summary with service breakdown
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| month | Yes | ||
| year | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "month": {
      "title": "Month",
      "type": "integer"
    },
    "year": {
      "title": "Year",
      "type": "integer"
    }
  },
  "required": [
    "year",
    "month"
  ],
  "type": "object"
}