Skip to main content
Glama
code-alchemist01

MCP Cloud Services Server

estimate_monthly_cost

Calculate monthly cloud service expenses for AWS, Azure, or GCP based on current resource usage to help manage budgets.

Instructions

Estimate monthly cost based on current usage

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
providerYesCloud provider

Implementation Reference

  • Handler implementation for the 'estimate_monthly_cost' tool, which provides a placeholder estimation response requiring actual usage data.
    case 'estimate_monthly_cost': { // Simplified estimation return { provider, estimatedMonthlyCost: 'N/A - Requires actual usage data', message: 'Monthly cost estimation requires detailed usage metrics', }; }
  • Registration of the 'estimate_monthly_cost' tool within the costAnalysisTools array, including name, description, and input schema.
    { name: 'estimate_monthly_cost', description: 'Estimate monthly cost based on current usage', inputSchema: { type: 'object', properties: { provider: { type: 'string', enum: ['aws', 'azure', 'gcp'], description: 'Cloud provider', }, }, required: ['provider'], }, }, ];
  • Input schema definition for the 'estimate_monthly_cost' tool, specifying the required 'provider' parameter.
    inputSchema: { type: 'object', properties: { provider: { type: 'string', enum: ['aws', 'azure', 'gcp'], description: 'Cloud provider', }, }, required: ['provider'], },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/code-alchemist01/Cloud-mcp_server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server