Terraform MCP Server

Cloudstdiov0.5.0
Repositorio

Provides AI agents with the ability to manage Terraform infrastructure through the Model Context Protocol. Supports plan generation, state inspection, resource drift detection, and module discovery. Enables safe infrastructure changes with plan review before apply.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "terraform": {
      "command": "npx",
      "args": [
        "-y",
        "@hashicorp/terraform-mcp-server"
      ],
      "env": {
        "TF_TOKEN": "<YOUR_TF_TOKEN>"
      }
    }
  }
}

Herramientas (4)

terraform_plan

Run terraform plan in a directory and return the execution plan showing what changes will be made.

{
  "type": "object",
  "required": [
    "working_dir"
  ],
  "properties": {
    "target": {
      "type": "string",
      "description": "Resource address to target for partial plans"
    },
    "var_file": {
      "type": "string",
      "description": "Path to a variables file"
    },
    "working_dir": {
      "type": "string",
      "description": "Path to the Terraform configuration directory"
    }
  }
}

terraform_show

Show the current state or a saved plan in human-readable format.

{
  "type": "object",
  "required": [
    "working_dir"
  ],
  "properties": {
    "plan_file": {
      "type": "string",
      "description": "Path to a saved plan file (optional, shows state if omitted)"
    },
    "working_dir": {
      "type": "string",
      "description": "Path to the Terraform configuration directory"
    }
  }
}

terraform_validate

Validate Terraform configuration files for syntax and consistency errors.

{
  "type": "object",
  "required": [
    "working_dir"
  ],
  "properties": {
    "working_dir": {
      "type": "string",
      "description": "Path to the Terraform configuration directory"
    }
  }
}

search_modules

Search the Terraform Registry for modules matching a query.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query for modules"
    },
    "provider": {
      "type": "string",
      "description": "Filter by provider (aws, gcp, azure)"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
HashiCorp (@hashicorp)
Repositorio
https://github.com/hashicorp/terraform-mcp-server
Licencia
MPL-2.0
Versión
0.5.0
Estrellas
3,150
Última actualización
20 de mayo de 2026