project.jsonβ’1.07 kB
{
"name": "azure-pricing-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol server for querying Azure retail pricing information",
"main": "azure_pricing_server.py",
"scripts": {
"setup": "python setup.py",
"test": "python test_server.py",
"test-api": "python test_api.py",
"start": "python -m azure_pricing_server"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/azure-pricing-mcp-server"
},
"keywords": [
"azure",
"pricing",
"mcp",
"model-context-protocol",
"cloud-costs",
"cost-estimation"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"mcp": ">=1.0.0",
"requests": ">=2.31.0",
"aiohttp": ">=3.9.0",
"pydantic": ">=2.0.0"
},
"python_requires": ">=3.8",
"mcp_tools": [
"azure_price_search",
"azure_price_compare",
"azure_cost_estimate"
],
"azure_api": {
"base_url": "https://prices.azure.com/api/retail/prices",
"version": "2023-01-01-preview",
"authentication": "none"
}
}