Skip to content

Commit f28e6f2

Browse files
author
manikanta-sadurla
committed
Merge pull request #8 from sourcefuse/feature/arc-iac-mcp
docs: add ARC IaC MCP tip callout and AI assistant integration section to README
1 parent 779e2f5 commit f28e6f2

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

  • docs/arc-iac-docs/modules/terraform-aws-ref-arch-observability-stack

docs/arc-iac-docs/modules/terraform-aws-ref-arch-observability-stack/README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717

1818
[![Quality gate](https://sonarcloud.io/api/project_badges/quality_gate?project=sourcefuse_terraform-aws-arc-observability-stack&token=bf80d04b87395dadd9473538860728fd9d32cfc6)](https://sonarcloud.io/summary/new_code?id=sourcefuse_terraform-aws-arc-observability-stack)
1919

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+
2023

2124
## Overview
2225

@@ -310,6 +313,50 @@ By specifying this , it will bump the version and if you dont specify this in yo
310313
```sh
311314
go test -timeout 1800s
312315
```
316+
## AI Assistant Integration (ARC IaC MCP)
317+
318+
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.
319+
320+
**What you can do with it:**
321+
322+
- **Discover** — search and filter modules by keyword or AWS resource type.
323+
- **Understand** — get inputs, outputs, and resources for any module without leaving your editor.
324+
- **Scaffold** — generate production-ready, multi-file Terraform with cross-module wiring already done.
325+
- **Secure** — scan generated or existing HCL for misconfigurations before it hits a PR.
326+
- **Compare** — diff modules side-by-side to make informed architectural decisions.
327+
328+
### Setup (one minute)
329+
330+
The MCP endpoint is `https://arc-iac-mcp.sourcef.us/mcp`. Pick your client:
331+
332+
**Claude Code CLI:**
333+
```bash
334+
claude mcp add arc-iac --transport http https://arc-iac-mcp.sourcef.us/mcp
335+
```
336+
337+
**Claude Desktop** — edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
338+
```json
339+
{
340+
"mcpServers": {
341+
"arc-iac": {
342+
"url": "https://arc-iac-mcp.sourcef.us/mcp"
343+
}
344+
}
345+
}
346+
```
347+
348+
**Cursor / Windsurf / Kiro** — add the same block to `.cursor/mcp.json` (or the equivalent for your client).
349+
350+
### Example prompts to try
351+
352+
- *"List all ARC modules sorted by downloads"*
353+
- *"What inputs does `arc-ecs` require?"*
354+
- *"Scaffold a production-ready `arc-db` Aurora setup with Secrets Manager"*
355+
- *"Compare `arc-eks` and `arc-ecs` for running 10 microservices"*
356+
- *"Scan this Terraform before I raise a PR: `<paste HCL>`"*
357+
358+
See the [ARC IaC MCP repo](https://github.com/sourcefuse/arc-iac-mcp) for the full tool reference, troubleshooting tips, and local-development instructions.
359+
313360
## Contributing
314361

315362
See [CONTRIBUTING.md](./CONTRIBUTING.md) for commit conventions and development setup.

0 commit comments

Comments
 (0)