MCP server for Infracost CLI integration - cloud cost estimates for Infrastructure as Code
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Inspect callable tools, capabilities, and parameters exposed to AI agents by Infracost.
infracost_breakdownMonthly cost baseline for current IaC
infracost_diffCost delta from a planned change
infracost_outputRendered table/JSON/HTML/comment output
infracost_commentPR comment with estimated impact
infracost_uploadCost report visible in Infracost Cloud
infracost_configurePersisted CLI config update/read

Note: This is a community-maintained MCP server. It is not an official Model Context Protocol server from Infracost.
A Model Context Protocol (MCP) server for running the Infracost CLI to estimate, compare, and publish infrastructure cost changes from Terraform and other Infrastructure as Code projects.
This server provides eight MCP tools across estimation, reporting, collaboration, and operations workflows:
infracost_breakdown to generate baseline cost estimates.infracost_diff to compare planned cost changes.infracost_output to render existing Infracost JSON in different formats.infracost_comment to post PR comments on supported SCM platforms.infracost_upload to upload reports to Infracost Cloud.infracost_configure to get or set CLI configuration.infracost_auth to run authentication flow.infracost_generate_usage to generate usage files with sensible defaults.This MCP server is platform-agnostic and works in local and CI environments:
The primary requirements are Node.js and the Infracost CLI binary.
| Tool | Category | Typical outcome |
|---|---|---|
infracost_breakdown | Estimation | Monthly cost baseline for current IaC |
infracost_diff | Comparison | Cost delta from a planned change |
infracost_output | Reporting | Rendered table/JSON/HTML/comment output |
infracost_comment | Collaboration | PR comment with estimated impact |
infracost_upload | Cloud Sync | Cost report visible in Infracost Cloud |
infracost_configure | Configuration | Persisted CLI config update/read |
infracost_auth | Authentication | Login flow for Infracost Cloud |
infracost_generate_usage | Utilities | Pre-filled usage file template with defaults |
infracost_breakdownRuns infracost breakdown.
Inputs:
workingDirectory (string, optional): Command working directory.path (string, optional): Path to Terraform/IaC directory or plan JSON.configFile (string, optional): Path to Infracost config file.usageFile (string, optional): Path to usage file.format (string, optional): Output format. Default: table.fields (string[], optional): Fields to include in output.showSkus (boolean, optional): Include SKU details.syncUsageFile (boolean, optional): Sync usage file with detected resources.compareTo (string, optional): Baseline Infracost JSON path.terraformWorkspace (string, optional): Terraform workspace.terraformPlanFlags (string, optional): Flags for terraform plan.timeoutSeconds (number, optional): Timeout in seconds.extraArgs (string[], optional): Additional CLI arguments.infracost_diffRuns infracost diff.
Inputs:
workingDirectory (string, optional): Command working directory.path (string, optional): Path to Terraform/IaC directory or plan JSON.configFile (string, optional): Path to Infracost config file.usageFile (string, optional): Path to usage file.format (string, optional): Output format. Default: table.compareTo (string, optional): Baseline Infracost JSON path.showSkus (boolean, optional): Include SKU details.syncUsageFile (boolean, optional): Sync usage file with detected resources.terraformWorkspace (string, optional): Terraform workspace.terraformPlanFlags (string, optional): Flags for terraform plan.timeoutSeconds (number, optional): Timeout in seconds.extraArgs (string[], optional): Additional CLI arguments.infracost_outputRuns infracost output.
Inputs:
workingDirectory (string, optional): Command working directory.path (string, optional): Infracost JSON file path. Auto-detected when omitted.format (string, optional): Output format. Default: table.fields (string[], optional): Fields to include in output.showSkus (boolean, optional): Include SKU details.timeoutSeconds (number, optional): Timeout in seconds.extraArgs (string[], optional): Additional CLI arguments.infracost_commentRuns infracost comment.
Inputs:
workingDirectory (string, optional): Command working directory.platform (string, optional): Platform (github, gitlab, azure-repos, bitbucket). Default: github.path (string, optional): Infracost JSON file path. Auto-detected when omitted.repo (string, optional): Repository (owner/repo).pullRequest (string, optional): Pull request number.commit (string, optional): Commit SHA.token (string, optional): Platform token.tag (string, optional): Comment tag.behavior (string, optional): Comment update behavior.dryRun (boolean, optional): Generate without posting.timeoutSeconds (number, optional): Timeout in seconds.extraArgs (string[], optional): Additional CLI arguments.infracost_uploadRuns infracost upload.
Inputs:
workingDirectory (string, optional): Command working directory.path (string, optional): Infracost JSON file path. Auto-detected when omitted.timeoutSeconds (number, optional): Timeout in seconds.extraArgs (string[], optional): Additional CLI arguments.infracost_configureRuns infracost configure.
Inputs:
workingDirectory (string, optional): Command working directory.set (string, optional): Set configuration value.get (string, optional): Read configuration value.timeoutSeconds (number, optional): Timeout in seconds.extraArgs (string[], optional): Additional CLI arguments.infracost_authRuns infracost auth login.
Inputs:
workingDirectory (string, optional): Command working directory.timeoutSeconds (number, optional): Timeout in seconds.extraArgs (string[], optional): Additional CLI arguments.infracost_generate_usageGenerates an Infracost usage file with sensible defaults for specified resource types. This is a utility tool that complements infracost_configure by providing pre-filled templates you can customize for your workloads. Returns both raw JSON and formatted guidance.
Inputs:
resourceTypes (string[], required): Resource types to include (e.g., ["aws_lambda_function", "aws_s3_bucket"]).outputFilePath (string, optional): Path where usage file should be saved (for guidance only).includeGuidance (boolean, optional): Include formatted guidance. Default: true.onlyJson (boolean, optional): Return only raw JSON (no guidance). Default: false.Supported resource types: aws_lambda_function, aws_instance, aws_db_instance, aws_s3_bucket, aws_dynamodb_table, aws_ebs_volume, aws_cloudfront_distribution, aws_lb, aws_nat_gateway, google_compute_instance, google_storage_bucket, azurerm_windows_virtual_machine, azurerm_linux_virtual_machine, azurerm_storage_account, azurerm_mssql_database.
Use these minimal prompts in Copilot Chat with @infracost.
CLI tools default to the current workspace root when no path is given.
If you add a file or folder as Copilot context (#file or #folder), reference it in your prompt and the tool will target that path.
The server auto-detects common report files (infracost-diff.json, infracost-base.json, infracost.json), so you usually do not need to pass path for infracost_output, infracost_comment, or infracost_upload.
infracost_breakdown)Expected output: Baseline cost estimate with command output, exit code, stdout, and stderr.
infracost_diff)Expected output: Cost delta from the planned change compared to current baseline.
infracost_output)Expected output: Formatted output from existing Infracost JSON (auto-detected when possible).
infracost_comment)Expected output: Generated comment payload, or posted comment when not in dry-run mode. Platform defaults to github.
infracost_upload)Expected output: Upload confirmation for Infracost Cloud ingestion.
infracost_configure)Expected output: Configuration update confirmation from the CLI.
infracost_auth)Expected output: Authentication flow prompt or login success details.
infracost_generate_usage)Expected output: Pre-filled usage file JSON with sensible defaults, plus guidance on customization and usage. Use onlyJson: true to return only the JSON for programmatic handling.
>=24.14.0PATH (or via INFRACOST_BINARY_PATH)Runtime:
@modelcontextprotocol/sdk (MCP server SDK)Development:
typescript (build/compile)tsx (development runner)vitest (unit test runner)@types/node (Node.js typings)INFRACOST_API_KEY: Infracost API key for cloud-backed features.INFRACOST_BINARY_PATH: Override path to Infracost binary.This workspace is preconfigured in .vscode/mcp.json:
Reload VS Code (Cmd+Shift+P -> Developer: Reload Window) after changing MCP configuration.
Then query the server from Copilot Chat with @infracost, for example:
Use stdio transport with the built entrypoint:
Build first with npm run build, then start your MCP client.
Development mode:
Built mode:
Use .vscode/launch.json:
Debug MCP Server (runs npm run dev)Debug MCP Server (Built) (runs dist/index.js after build)Set breakpoints in src/index.ts, then press F5.
See docs/TESTING.md for Copilot Chat scenarios, manual JSON-RPC checks, and troubleshooting guidance.
Quick validation prompt in Copilot Chat:
workingDirectory explicit when running inside monorepos.--format json for machine processing and --format table for human triage.timeoutSeconds high enough for large Terraform plans.infracost_comment with dryRun=true before posting to production PR threads.infracost_upload for historical visibility in Infracost Cloud.Maintained by Carl Dawson under the Down At The Bottom Of The Mole Hole organization.
Licensed under the MIT License.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/infracost)<a href="https://allmcps.com/mcp/infracost"><img src="https://allmcps.com/api/badge/infracost?style=directory" alt="Infracost on AllMCPs" /></a>