{"id":49339836,"url":"https://github.com/citadel-cloud-management/mcp-server-terraform","last_synced_at":"2026-04-27T03:04:40.226Z","repository":{"id":350756974,"uuid":"1175440321","full_name":"Citadel-Cloud-Management/mcp-server-terraform","owner":"Citadel-Cloud-Management","description":"MCP server for Terraform operations - plan, apply, validate, state, and output","archived":false,"fork":false,"pushed_at":"2026-04-11T22:18:32.000Z","size":15,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-12T00:27:29.448Z","etag":null,"topics":["ai","anthropic","automation","claude","infrastructure-as-code","llm","mcp","model-context-protocol","terraform","typescript"],"latest_commit_sha":null,"homepage":"https://citadel-cloud-management.github.io/mcp-server-terraform/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Citadel-Cloud-Management.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-07T18:02:48.000Z","updated_at":"2026-04-11T22:40:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Citadel-Cloud-Management/mcp-server-terraform","commit_stats":null,"previous_names":["kogunlowo123/mcp-server-terraform"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Citadel-Cloud-Management/mcp-server-terraform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Citadel-Cloud-Management%2Fmcp-server-terraform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Citadel-Cloud-Management%2Fmcp-server-terraform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Citadel-Cloud-Management%2Fmcp-server-terraform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Citadel-Cloud-Management%2Fmcp-server-terraform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Citadel-Cloud-Management","download_url":"https://codeload.github.com/Citadel-Cloud-Management/mcp-server-terraform/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Citadel-Cloud-Management%2Fmcp-server-terraform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32320688,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","anthropic","automation","claude","infrastructure-as-code","llm","mcp","model-context-protocol","terraform","typescript"],"created_at":"2026-04-27T03:04:39.546Z","updated_at":"2026-04-27T03:04:40.222Z","avatar_url":"https://github.com/Citadel-Cloud-Management.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mcp-server-terraform\n\nAn MCP (Model Context Protocol) server that exposes Terraform CLI operations as tools for Claude and other MCP-compatible AI assistants. Enables AI-driven infrastructure-as-code workflows including planning, applying, and validating Terraform configurations.\n\n## Architecture\n\n```mermaid\ngraph TB\n    subgraph Client[\"MCP Client (Claude)\"]\n        style Client fill:#4A90D9,stroke:#2C5F8A,color:#FFFFFF\n        A[Claude Desktop / CLI]\n    end\n\n    subgraph Server[\"MCP Server\"]\n        style Server fill:#2ECC71,stroke:#1A9B52,color:#FFFFFF\n        B[StdioTransport]\n        C[Tool Registry]\n    end\n\n    subgraph Tools[\"Terraform Tools\"]\n        style Tools fill:#F39C12,stroke:#D68910,color:#FFFFFF\n        D[terraform_init]\n        E[terraform_plan]\n        F[terraform_apply]\n        G[terraform_validate]\n        H[terraform_state_list]\n        I[terraform_output]\n    end\n\n    subgraph Infra[\"Infrastructure\"]\n        style Infra fill:#9B59B6,stroke:#7D3C98,color:#FFFFFF\n        J[Terraform CLI]\n        K[State Backend]\n        L[Cloud Providers]\n    end\n\n    A --\u003e|stdio| B\n    B --\u003e C\n    C --\u003e D\n    C --\u003e E\n    C --\u003e F\n    C --\u003e G\n    C --\u003e H\n    C --\u003e I\n    D --\u003e J\n    E --\u003e J\n    F --\u003e J\n    G --\u003e J\n    H --\u003e J\n    I --\u003e J\n    J --\u003e K\n    J --\u003e L\n```\n\n## Tools\n\n| Tool | Description |\n|------|-------------|\n| `terraform_init` | Initialize a working directory, download providers and modules |\n| `terraform_plan` | Generate and display an execution plan |\n| `terraform_apply` | Apply changes to reach desired infrastructure state |\n| `terraform_validate` | Validate configuration files for syntax errors |\n| `terraform_state_list` | List all resources in the state file |\n| `terraform_output` | Read output values from state |\n\n## Quick Start\n\n```bash\nnpm install\nnpm run build\nnpm start\n```\n\n## Docker\n\n```bash\ndocker build -t mcp-server-terraform .\ndocker run -i mcp-server-terraform\n```\n\n## Claude Desktop Configuration\n\n```json\n{\n  \"mcpServers\": {\n    \"terraform\": {\n      \"command\": \"node\",\n      \"args\": [\"dist/index.js\"],\n      \"cwd\": \"/path/to/mcp-server-terraform\"\n    }\n  }\n}\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcitadel-cloud-management%2Fmcp-server-terraform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcitadel-cloud-management%2Fmcp-server-terraform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcitadel-cloud-management%2Fmcp-server-terraform/lists"}