MCP server for Azure Billing integration
Project description
Azure Billing MCP Server
A Model Context Protocol (MCP) server for Azure Billing integration. This server provides tools for interacting with Azure's Billing and Cost Management APIs, allowing you to query cost analysis, budgets, usage details, and other billing information.
Features
- Cost Analysis: Analyze your Azure costs with various timeframes and granularity options
- Budget Management: View existing budget information
- Usage Details: Get detailed information about resource usage
- Subscription Information: Retrieve subscription details
- Price Sheet: Access pricing information for Azure services
Installation
pip install mcp-azure-billing
Azure Credentials
To use this MCP server, you'll need to set up an Azure service principal with permissions to access billing information. Here's how to obtain the necessary credentials:
-
Create an Azure AD application and service principal:
az ad sp create-for-rbac --name "AzureBillingMCP" --role "Cost Management Reader" --scopes /subscriptions/{SUBSCRIPTION_ID}
This command will output application (client) ID, tenant ID, and client secret.
-
Verify the permissions:
Ensure the service principal has at least the "Cost Management Reader" role assigned at the subscription level to access billing data.
-
Required Credentials:
- AZURE_BILLING_TENANT_ID: Your Azure AD tenant ID
- AZURE_BILLING_CLIENT_ID: The application (client) ID of your service principal
- AZURE_BILLING_CLIENT_SECRET: The client secret value
- AZURE_BILLING_SUBSCRIPTION_ID: Your Azure subscription ID
Configuration
Set the following environment variables:
export AZURE_BILLING_TENANT_ID="your_tenant_id"
export AZURE_BILLING_CLIENT_ID="your_client_id"
export AZURE_BILLING_CLIENT_SECRET="your_client_secret"
export AZURE_BILLING_SUBSCRIPTION_ID="your_subscription_id"
Usage
Starting the server directly
mcp-azure-billing
Using with Claude Desktop
Add the following to your claude_desktop_config.json file:
"mcp-azure-billing": {
"command": "uvx",
"args": [
"mcp-azure-billing"
],
"env": {
"AZURE_BILLING_TENANT_ID": "your_tenant_id",
"AZURE_BILLING_CLIENT_ID": "your_client_id",
"AZURE_BILLING_CLIENT_SECRET": "your_client_secret",
"AZURE_BILLING_SUBSCRIPTION_ID": "your_subscription_id"
}
}
Replace the environment variables with your actual Azure credentials.
Available Tools
- get_cost_analysis: Analyze Azure costs with customizable timeframes, granularity, and grouping
- get_budgets: Retrieve information about all configured budgets for the subscription
- get_usage_details: Get detailed usage information for a specified date range
- get_subscription_details: Retrieve details about the current Azure subscription
- get_price_sheet: Get pricing information for Azure services
Available Resources
- azure_billing://subscription: Details about the current Azure subscription
- azure_billing://billing-summary: Summary of current billing for the subscription
- azure_billing://budgets: Information about all configured budgets
Available Prompts
- analyze_costs: Template for analyzing Azure costs with customizable parameters
- budget_recommendations: Template for getting budget recommendations based on usage patterns
- cost_reduction: Template for getting cost reduction suggestions
Security Notes
- Store your Azure credentials securely - they provide access to potentially sensitive billing information
- Consider using environment variables rather than hardcoding credentials
- Ensure your service principal has the minimum necessary permissions
Limitations
- This server provides read-only access to billing information
- Some operations may take time to complete due to the nature of the Azure Cost Management API
- Usage data may not reflect the most recent activities (typically 8-24 hour delay)
Version
0.0.1
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 mcp_azure_billing-0.0.3.tar.gz.
File metadata
- Download URL: mcp_azure_billing-0.0.3.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07993c0c5984b414b9615feefb36a052d767f20b0f49d02ca40f2ad169478343
|
|
| MD5 |
37ddd26d1ace09a57d1f7399d09724b5
|
|
| BLAKE2b-256 |
39f53e253668e2143246b4a4466c4ae01aa0957d87cdd62efd6242cb444347a6
|
File details
Details for the file mcp_azure_billing-0.0.3-py3-none-any.whl.
File metadata
- Download URL: mcp_azure_billing-0.0.3-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6b1245184640c9f19356422008a3af9a2b9ba33365f046295e6159af61d709c
|
|
| MD5 |
20d97a949e136fd066b32114cf5b0e62
|
|
| BLAKE2b-256 |
ae259b11f490840eff8e73c3d922738f70db8f7d3bd1140e5d414390884c334d
|