Skip to content

Commit 23d0441

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

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

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

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

Lines changed: 48 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-sagemaker&token=593eae6b5a514b62b2c08871c2f608e4ce172ec5)](https://sonarcloud.io/summary/new_code?id=sourcefuse_terraform-aws-arc-sagemaker)
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
Creates SageMaker domains, models, endpoint configurations, endpoints, notebooks, and training jobs with IAM roles and VPC configuration.
@@ -236,6 +239,50 @@ By specifying this , it will bump the version and if you don't specify this in y
236239
go test -timeout 30m
237240
```
238241

242+
## AI Assistant Integration (ARC IaC MCP)
243+
244+
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.
245+
246+
**What you can do with it:**
247+
248+
- **Discover** — search and filter modules by keyword or AWS resource type.
249+
- **Understand** — get inputs, outputs, and resources for any module without leaving your editor.
250+
- **Scaffold** — generate production-ready, multi-file Terraform with cross-module wiring already done.
251+
- **Secure** — scan generated or existing HCL for misconfigurations before it hits a PR.
252+
- **Compare** — diff modules side-by-side to make informed architectural decisions.
253+
254+
### Setup (one minute)
255+
256+
The MCP endpoint is `https://arc-iac-mcp.sourcef.us/mcp`. Pick your client:
257+
258+
**Claude Code CLI:**
259+
```bash
260+
claude mcp add arc-iac --transport http https://arc-iac-mcp.sourcef.us/mcp
261+
```
262+
263+
**Claude Desktop** — edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
264+
```json
265+
{
266+
"mcpServers": {
267+
"arc-iac": {
268+
"url": "https://arc-iac-mcp.sourcef.us/mcp"
269+
}
270+
}
271+
}
272+
```
273+
274+
**Cursor / Windsurf / Kiro** — add the same block to `.cursor/mcp.json` (or the equivalent for your client).
275+
276+
### Example prompts to try
277+
278+
- *"List all ARC modules sorted by downloads"*
279+
- *"What inputs does `arc-ecs` require?"*
280+
- *"Scaffold a production-ready `arc-db` Aurora setup with Secrets Manager"*
281+
- *"Compare `arc-eks` and `arc-ecs` for running 10 microservices"*
282+
- *"Scan this Terraform before I raise a PR: `<paste HCL>`"*
283+
284+
See the [ARC IaC MCP repo](https://github.com/sourcefuse/arc-iac-mcp) for the full tool reference, troubleshooting tips, and local-development instructions.
285+
239286
## Contributing
240287

241288
See [CONTRIBUTING.md](./CONTRIBUTING.md) for commit conventions and development setup.
@@ -244,3 +291,4 @@ See [CONTRIBUTING.md](./CONTRIBUTING.md) for commit conventions and development
244291

245292
This project is authored by:
246293
- SourceFuse ARC Team
294+

0 commit comments

Comments
 (0)