Skip to content

Commit 412a133

Browse files
author
manikanta-sadurla
committed
Merge pull request #35 from sourcefuse/feature/update-doc-iac-mcp
docs: add ARC IaC MCP tip callout and AI assistant integration section to README
1 parent 23d0441 commit 412a133

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

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

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

Lines changed: 50 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-opensearch)](https://sonarcloud.io/summary/new_code?id=sourcefuse_terraform-aws-arc-opensearch)
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
## Overview
2124

2225
Deploys Amazon OpenSearch Service domains (managed or serverless) with VPC, encryption, fine-grained access control, and CloudWatch alarms.
@@ -270,6 +273,53 @@ the pipeline will kick off and tag the latest git commit.
270273
- [golang](https://golang.org/doc/install#install)
271274
- [golint](https://github.com/golang/lint#installation)
272275

276+
---
277+
## AI Assistant Integration (ARC IaC MCP)
278+
279+
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.
280+
281+
**What you can do with it:**
282+
283+
- **Discover** — search and filter modules by keyword or AWS resource type.
284+
- **Understand** — get inputs, outputs, and resources for any module without leaving your editor.
285+
- **Scaffold** — generate production-ready, multi-file Terraform with cross-module wiring already done.
286+
- **Secure** — scan generated or existing HCL for misconfigurations before it hits a PR.
287+
- **Compare** — diff modules side-by-side to make informed architectural decisions.
288+
289+
### Setup (one minute)
290+
291+
The MCP endpoint is `https://arc-iac-mcp.sourcef.us/mcp`. Pick your client:
292+
293+
**Claude Code CLI:**
294+
```bash
295+
claude mcp add arc-iac --transport http https://arc-iac-mcp.sourcef.us/mcp
296+
```
297+
298+
**Claude Desktop** — edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
299+
```json
300+
{
301+
"mcpServers": {
302+
"arc-iac": {
303+
"url": "https://arc-iac-mcp.sourcef.us/mcp"
304+
}
305+
}
306+
}
307+
```
308+
309+
**Cursor / Windsurf / Kiro** — add the same block to `.cursor/mcp.json` (or the equivalent for your client).
310+
311+
### Example prompts to try
312+
313+
- *"List all ARC modules sorted by downloads"*
314+
- *"What inputs does `arc-ecs` require?"*
315+
- *"Scaffold a production-ready `arc-db` Aurora setup with Secrets Manager"*
316+
- *"Compare `arc-eks` and `arc-ecs` for running 10 microservices"*
317+
- *"Scan this Terraform before I raise a PR: `<paste HCL>`"*
318+
319+
See the [ARC IaC MCP repo](https://github.com/sourcefuse/arc-iac-mcp) for the full tool reference, troubleshooting tips, and local-development instructions.
320+
321+
---
322+
273323
### Configurations
274324

275325
- Configure pre-commit hooks

0 commit comments

Comments
 (0)