Skip to content

Commit 778466b

Browse files
author
manikanta-sadurla
committed
Merge pull request #5 from sourcefuse/feature/arc-iac-mcp
docs: add ARC IaC MCP integration section to README
1 parent cc32a57 commit 778466b

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

  • docs/arc-iac-docs/modules/terraform-aws-arc-argocd

docs/arc-iac-docs/modules/terraform-aws-arc-argocd/README.md

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

1919
[![Quality Gate](https://sonarcloud.io/api/project_badges/quality_gate?project=sourcefuse_terraform-aws-arc-argocd&token=eaba4016b566fbd661d5446df35b82444d5309bb)](https://sonarcloud.io/summary/new_code?id=sourcefuse_terraform-aws-arc-argocd)
2020

21+
> [!TIP]
22+
> 🤖 **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)
23+
2124
## Overview
2225

2326
## Architecture
@@ -501,6 +504,50 @@ By specifying this , it will bump the version and if you dont specify this in yo
501504
go test
502505
```
503506

507+
## AI Assistant Integration (ARC IaC MCP)
508+
509+
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.
510+
511+
**What you can do with it:**
512+
513+
- **Discover** — search and filter modules by keyword or AWS resource type.
514+
- **Understand** — get inputs, outputs, and resources for any module without leaving your editor.
515+
- **Scaffold** — generate production-ready, multi-file Terraform with cross-module wiring already done.
516+
- **Secure** — scan generated or existing HCL for misconfigurations before it hits a PR.
517+
- **Compare** — diff modules side-by-side to make informed architectural decisions.
518+
519+
### Setup (one minute)
520+
521+
The MCP endpoint is `https://arc-iac-mcp.sourcef.us/mcp`. Pick your client:
522+
523+
**Claude Code CLI:**
524+
```bash
525+
claude mcp add arc-iac --transport http https://arc-iac-mcp.sourcef.us/mcp
526+
```
527+
528+
**Claude Desktop** — edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
529+
```json
530+
{
531+
"mcpServers": {
532+
"arc-iac": {
533+
"url": "https://arc-iac-mcp.sourcef.us/mcp"
534+
}
535+
}
536+
}
537+
```
538+
539+
**Cursor / Windsurf / Kiro** — add the same block to `.cursor/mcp.json` (or the equivalent for your client).
540+
541+
### Example prompts to try
542+
543+
- *"List all ARC modules sorted by downloads"*
544+
- *"What inputs does `arc-ecs` require?"*
545+
- *"Scaffold a production-ready `arc-db` Aurora setup with Secrets Manager"*
546+
- *"Compare `arc-eks` and `arc-ecs` for running 10 microservices"*
547+
- *"Scan this Terraform before I raise a PR: `<paste HCL>`"*
548+
549+
See the [ARC IaC MCP repo](https://github.com/sourcefuse/arc-iac-mcp) for the full tool reference, troubleshooting tips, and local-development instructions.
550+
504551
## Contributing
505552

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

0 commit comments

Comments
 (0)