|
17 | 17 |
|
18 | 18 | [](https://sonarcloud.io/summary/new_code?id=sourcefuse_terraform-aws-arc-redshift) |
19 | 19 |
|
| 20 | +> [!TIP] |
| 21 | +> 🤖 **New:** Use this module with AI assistants via the [ARC IaC MCP Server](https://github.com/sourcefuse/arc-iac-mcp) — search, scaffold, and security-scan ARC modules from natural language. [Quick setup ↓](#ai-assistant-integration-arc-iac-mcp) |
| 22 | +
|
20 | 23 |
|
21 | 24 | ## Overview |
22 | 25 |
|
@@ -239,10 +242,55 @@ By specifying this , it will bump the version and if you don't specify this in y |
239 | 242 | go test -timeout 30m |
240 | 243 | ``` |
241 | 244 |
|
| 245 | +## AI Assistant Integration (ARC IaC MCP) |
| 246 | + |
| 247 | +The **[ARC IaC MCP Server](https://github.com/sourcefuse/arc-iac-mcp)** is a hosted Model Context Protocol service that lets AI assistants browse, search, scaffold, compare, and security-scan any of the SourceFuse ARC Terraform modules — directly from natural language. |
| 248 | + |
| 249 | +**What you can do with it:** |
| 250 | + |
| 251 | +- **Discover** — search and filter modules by keyword or AWS resource type. |
| 252 | +- **Understand** — get inputs, outputs, and resources for any module without leaving your editor. |
| 253 | +- **Scaffold** — generate production-ready, multi-file Terraform with cross-module wiring already done. |
| 254 | +- **Secure** — scan generated or existing HCL for misconfigurations before it hits a PR. |
| 255 | +- **Compare** — diff modules side-by-side to make informed architectural decisions. |
| 256 | + |
| 257 | +### Setup (one minute) |
| 258 | + |
| 259 | +The MCP endpoint is `https://arc-iac-mcp.sourcef.us/mcp`. Pick your client: |
| 260 | + |
| 261 | +**Claude Code CLI:** |
| 262 | +```bash |
| 263 | +claude mcp add arc-iac --transport http https://arc-iac-mcp.sourcef.us/mcp |
| 264 | +``` |
| 265 | + |
| 266 | +**Claude Desktop** — edit `~/Library/Application Support/Claude/claude_desktop_config.json`: |
| 267 | +```json |
| 268 | +{ |
| 269 | + "mcpServers": { |
| 270 | + "arc-iac": { |
| 271 | + "url": "https://arc-iac-mcp.sourcef.us/mcp" |
| 272 | + } |
| 273 | + } |
| 274 | +} |
| 275 | +``` |
| 276 | + |
| 277 | +**Cursor / Windsurf / Kiro** — add the same block to `.cursor/mcp.json` (or the equivalent for your client). |
| 278 | + |
| 279 | +### Example prompts to try |
| 280 | + |
| 281 | +- *"List all ARC modules sorted by downloads"* |
| 282 | +- *"What inputs does `arc-ecs` require?"* |
| 283 | +- *"Scaffold a production-ready `arc-db` Aurora setup with Secrets Manager"* |
| 284 | +- *"Compare `arc-eks` and `arc-ecs` for running 10 microservices"* |
| 285 | +- *"Scan this Terraform before I raise a PR: `<paste HCL>`"* |
| 286 | + |
| 287 | +See the [ARC IaC MCP repo](https://github.com/sourcefuse/arc-iac-mcp) for the full tool reference, troubleshooting tips, and local-development instructions. |
| 288 | + |
242 | 289 | ## Contributing |
243 | 290 | See [CONTRIBUTING.md](./CONTRIBUTING.md) for commit conventions and development setup. |
244 | 291 |
|
245 | 292 | ## Authors |
246 | 293 |
|
247 | 294 | This project is authored by: |
248 | 295 | - SourceFuse ARC Team |
| 296 | + |
0 commit comments