RajeevSirohi/mcp-server-terraform

โ˜๏ธ Cloud Platforms
0 Views
0 Installs

๐Ÿ“‡ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Safety-first Terraform operations: plan/apply/destroy with two-step confirmation gates, plan risk & cost analysis that flags expensive always-on resources (NAT gateways, EKS, Azure Firewall), drift detection, import/taint/refresh, provider auth pre-flight checks, and audit logging.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "rajeevsirohi-mcp-server-terraform": {
      "command": "npx",
      "args": [
        "-y",
        "rajeevsirohi-mcp-server-terraform"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

mcp-server-terraform

CI npm License: MIT

A Model Context Protocol (MCP) server that lets Claude manage Terraform infrastructure through natural language.

Run plans, apply changes, inspect state, and diagnose failures โ€” all from a Claude conversation.

What it does

Instead of switching to a terminal to run terraform plan, you can ask Claude:

"Plan the changes in /infra/staging and explain what will change"

"Apply it โ€” but only if no resources will be destroyed"

"Show me all the outputs from the prod workspace"

"Something broke after the last apply โ€” diagnose it"

The server translates these into real terraform CLI commands on your machine, with a built-in safety confirmation flow before any destructive operation runs.

Tools

ToolDescriptionDestructive
tf_initInitialize a Terraform working directoryNo
tf_validateValidate configuration syntaxNo
tf_planRun a plan and return the diff + risk/cost summaryNo
tf_applyApply changes (requires confirmed: true)Yes
tf_destroyDestroy infrastructure (requires confirmed: true)Yes
tf_outputRead output values from stateNo
tf_stateList, show, move, or remove state entriesPartial
tf_workspaceList, show, select, or create workspacesNo
tf_preflightCheck provider CLI authentication before runningNo
tf_driftDetect resources changed outside TerraformNo
tf_resourceImport, taint, untaint, or refresh resourcesYes

Plan risk & cost summary

Every plan (and every apply preview) is analyzed via terraform show -json and annotated with a structured summary โ€” destroyed resources are called out, and always-on resources that commonly cause bill shock are flagged with rough monthly costs:

โ”€โ”€ Plan Summary โ”€โ”€
+ 3 create, ~ 1 update, - 0 destroy, ยฑ 0 replace

๐Ÿ’ธ EXPENSIVE โ€” always-on resources being created:
   โš  aws_nat_gateway.main (~$32/month + data processing if left running)
   Remember to tf_destroy when you're done experimenting.

Cost-flagged resource types include NAT gateways, load balancers, EKS/AKS/GKE control planes, RDS/Cloud SQL instances, ElastiCache, Redshift, MSK, and Azure Firewall (~$900/month!).

Drift detection

tf_drift runs a refresh-only plan and reports resources that were changed outside Terraform (e.g. manually in the cloud console), with the changed attribute names and remediation options.

Audit logging

Set AUDIT_LOG_PATH to a file path and every tool call is appended as a JSON line with timestamp, tool name, outcome, and duration. Variable values are always redacted (db_password=<redacted>) โ€” only names are logged.

Confirmation flow

tf_apply and tf_destroy use a two-step safety flow:

  1. First call (no confirmed) โ†’ runs terraform plan, shows the diff, does nothing else
  2. Second call (confirmed: true) โ†’ actually applies or destroys

Claude is instructed to never pass confirmed: true without first presenting the plan to you.

Prompt

The server exposes a /tf-diagnose prompt that guides Claude through a systematic 5-step diagnosis of plan or apply failures.

Prerequisites

Installation

No install needed โ€” run it straight from npm:

npx @rajsir/mcp-server-terraform

Or, for development, from source:

git clone https://github.com/RajeevSirohi/mcp-server-terraform.git
cd mcp-server-terraform
npm install
npm run build

Claude Desktop setup

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "terraform": {
      "command": "npx",
      "args": ["-y", "@rajsir/mcp-server-terraform"]
    }
  }
}

(If running from source instead, use "command": "node" with "args": ["/absolute/path/to/dist/index.js"].)

Restart Claude Desktop. You should see a hammer icon indicating tools are available.

Usage

Once connected, just talk to Claude about your Terraform workspaces in plain language. Some examples:

First time in a new workspace

"Initialize the terraform config in C:\infra\staging and check if I'm logged into the right cloud accounts"

Claude runs tf_init, then tf_preflight โ€” if you're not authenticated it tells you exactly which command to run (az login, aws configure, ...).

The everyday plan โ†’ review โ†’ apply loop

"Plan the changes in C:\infra\staging and explain what will change"

You get the plan diff plus a summary: how many resources created/updated/destroyed, anything destructive called out explicitly, and cost warnings for expensive always-on resources.

"Looks good, apply it"

Claude shows the plan preview one more time and asks for your confirmation โ€” nothing is applied until you say yes. This two-step gate is built into the server itself, not just the prompt, so Claude cannot skip it.

Checking on your infrastructure

"Did anyone change anything outside terraform in the prod workspace?"

tf_drift compares state against reality and reports what was modified in the console, with options to accept or revert.

"Show me all the outputs" ยท "List everything in state" ยท "What workspaces exist?"

Learning / experimenting (e.g. cert prep)

"Apply the VPC lab in C:\labs\vpc, and when I say 'done' destroy everything"

The cost flags are your friend here โ€” if a lab creates a NAT gateway or EKS cluster, the plan summary warns you what it costs per month if forgotten:

๐Ÿ’ธ EXPENSIVE โ€” always-on resources being created:
   โš  aws_nat_gateway.main (~$32/month + data processing if left running)
   Remember to tf_destroy when you're done experimenting.

Fixing things

"terraform plan is failing in C:\infra\staging โ€” diagnose it"

The /tf-diagnose prompt walks Claude through validate โ†’ providers โ†’ plan โ†’ state โ†’ outputs systematically. There's also /tf-login for step-by-step authentication setup per provider.

"Import the S3 bucket my-legacy-bucket into state as aws_s3_bucket.legacy"

"Taint the web server so it gets recreated on the next apply"

Recommended setup for shared or cautious environments

Run with ALLOW_ONLY_NON_DESTRUCTIVE_TOOLS=true (see Safety modes below) so apply/destroy are unavailable entirely, and set AUDIT_LOG_PATH so every operation is logged.

Safety modes

Control which tools are available via environment variables:

VariableEffect
ALLOW_ONLY_READONLY_TOOLS=trueOnly tf_validate, tf_plan, tf_output
ALLOW_ONLY_NON_DESTRUCTIVE_TOOLS=trueBlocks tf_apply, tf_destroy, tf_state mv/rm
ALLOWED_TOOLS=tf_plan,tf_outputExplicit comma-separated allowlist

Example โ€” read-only mode:

{
  "mcpServers": {
    "terraform": {
      "command": "node",
      "args": ["/path/to/dist/index.js"],
      "env": {
        "ALLOW_ONLY_NON_DESTRUCTIVE_TOOLS": "true"
      }
    }
  }
}

Development

npm run dev       # watch mode (recompiles on save)
npm test          # run tests
npm run build     # production build

Project structure

src/
  index.ts                  # MCP server entry point, tool registration
  config/                   # (reserved for future config/telemetry)
  models/
    common-parameters.ts    # Shared Zod schemas
  security/
    tf-flags.ts             # Dangerous flag blocking
  tools/
    tf-init.ts
    tf-validate.ts
    tf-plan.ts
    tf-apply.ts             # Two-step confirmation flow
    tf-destroy.ts           # Two-step confirmation flow
    tf-output.ts
    tf-state.ts
    tf-workspace.ts
  utils/
    terraform-runner.ts     # Core exec wrapper, workspace switching
  prompts/
    index.ts                # /tf-diagnose prompt
tests/
  tf-flags.test.ts
  tf-apply.test.ts

Adding a new tool

  1. Create src/tools/tf-yourcommand.ts โ€” export a *Schema const and an async handler function
  2. Import both in src/index.ts
  3. Add the schema to readonlyTools or destructiveTools array
  4. Add a case in the CallToolRequestSchema handler switch

Roadmap

  • Terraform Cloud / Enterprise API support (Phase 2)
  • OpenTelemetry tracing
  • SSE / streamable HTTP transport for remote deployments
  • Docker image on GitHub Container Registry
  • Plan risk & cost analysis
  • Drift detection
  • Import / taint / untaint / refresh
  • Audit logging
  • CI (build, test matrix, e2e against real terraform)

Contributing

See CONTRIBUTING.md.

License

MIT โ€” see LICENSE.

Related MCP Servers

4everland/4everland-hosting-mcp

๐ŸŽ–๏ธ ๐Ÿ“‡ ๐Ÿ  ๐ŸŽ ๐Ÿง - An MCP server implementation for 4EVERLAND Hosting enabling instant deployment of AI-generated code to decentralized storage networks like Greenfield, IPFS, and Arweave.

โ˜๏ธ Cloud Platforms0 views
aashari/mcp-server-aws-sso

๐Ÿ“‡ โ˜๏ธ ๐Ÿ  - AWS Single Sign-On (SSO) integration enabling AI systems to securely interact with AWS resources by initiating SSO login, listing accounts/roles, and executing AWS CLI commands using temporary credentials.

โ˜๏ธ Cloud Platforms0 views
agentmetal/mcp

๐ŸŽ–๏ธ ๐Ÿ“‡ โ˜๏ธ - Provision, SSH into, run commands on, and manage Linux VPSes from an agent โ€” pay USDC over x402 or by card over HTTP 402, a running box in under 60s. No signup, no API key to buy.

โ˜๏ธ Cloud Platforms0 views
alexbakers/mcp-ipfs

๐Ÿ“‡ โ˜๏ธ - upload and manipulation of IPFS storage

โ˜๏ธ Cloud Platforms0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.