Terragrunt MCP Server
Provides analysis, validation, and optimization of OpenTofu configurations managed through Terragrunt, including dependency mapping, stack structure checks, and issue detection.
Provides analysis, validation, and optimization of Terraform configurations managed through Terragrunt, including dependency mapping, stack structure checks, and issue detection.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Terragrunt MCP ServerAnalyze my Terragrunt project for issues and suggest optimizations."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Terragrunt MCP Server v1.0.0
Um servidor Model Context Protocol (MCP) especializado em análise e validação de projetos Terragrunt 0.82.3. Fornece análise inteligente de configurações, dependências, stacks e otimizações para projetos Terragrunt diretamente em IDEs compatíveis com MCP.
🛠️ Ferramentas MCP Disponíveis
Ferramenta | Descrição | Status |
| Análise completa do projeto | ✅ |
| Valida configurações HCL | ✅ |
| Mapeia dependências | ✅ |
| Analisa estrutura de stacks | ✅ |
| Sugere otimizações | ✅ |
| Detecta problemas | ✅ |
| Coleta métricas | ✅ |
| Encontra módulos órfãos | ✅ |
Related MCP server: Terry-Form MCP
🚀 Recursos
🔍 Análise de Projeto
Detecção automática de arquivos
terragrunt.hcleterragrunt.stack.hclMapeamento completo da estrutura de diretórios
Análise de dependências entre módulos e stacks
Validação de configurações Terragrunt
🛠️ Ferramentas Disponíveis
analyze_project- Análise completa do projeto Terragruntvalidate_config- Validação de arquivos de configuraçãoget_dependencies- Mapeamento de dependênciascheck_stack_structure- Análise de stackssuggest_optimizations- Sugestões de melhoriadetect_issues- Detecção de problemas comunsget_project_metrics- Métricas do projetofind_unused_modules- Módulos não utilizados
📊 Insights Fornecidos
Estrutura do projeto e organização
Dependências circulares ou problemáticas
Configurações duplicadas ou inconsistentes
Melhores práticas para Terragrunt 0.82.3
Problemas de performance potenciais
Sugestões de refatoração
🏗️ Instalação
npm install
npm run build🎯 Uso
Executar o servidor MCP
npm startDesenvolvimento
npm run devExecutar testes
npm test🔧 Configuração
O servidor MCP pode ser configurado para trabalhar com diferentes IDEs que suportam o protocolo MCP.
Exemplo de configuração para Claude Desktop:
{
"mcpServers": {
"terragrunt-analyzer": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "/caminho/para/terragrunt-mcp-server"
}
}
}📁 Estrutura do Projeto
src/
├── index.ts # Servidor MCP principal
├── analyzers/ # Analisadores especializados
│ ├── project.ts # Análise de projeto
│ ├── config.ts # Análise de configuração
│ ├── dependencies.ts # Análise de dependências
│ └── stack.ts # Análise de stacks
├── parsers/ # Parsers para diferentes formatos
│ ├── hcl.ts # Parser HCL para Terragrunt
│ └── yaml.ts # Parser YAML
├── tools/ # Ferramentas MCP
│ ├── analyze.ts # Ferramenta de análise
│ ├── validate.ts # Ferramenta de validação
│ └── optimize.ts # Ferramenta de otimização
├── types/ # Definições de tipos
│ ├── terragrunt.ts # Tipos específicos do Terragrunt
│ └── mcp.ts # Tipos MCP
└── utils/ # Utilitários
├── file.ts # Operações de arquivo
├── path.ts # Operações de caminho
└── logger.ts # Sistema de log🎯 Versão Suportada
Este servidor foi desenvolvido especificamente para Terragrunt 0.82.3 e inclui:
Suporte completo para
terragrunt.stack.hclAnálise de engines IaC
Suporte para OpenTofu e Terraform
Novos comandos da CLI redesenhada
Recursos de strict mode
Análise de catálogos Terragrunt
🚀 Releases e Versionamento
Este projeto utiliza Conventional Commits e releases automáticas via GitHub Actions.
Como Contribuir com Commits
# Use o script interativo para commits
npm run commit
# Ou manualmente seguindo o padrão:
git commit -m "feat(mcp): add new analyzer tool"
git commit -m "fix(parser): resolve HCL parsing issue"
git commit -m "docs: update README instructions"Tipos de Release
patch: Correções de bugs (
fix:)minor: Novas funcionalidades (
feat:)major: Mudanças incompatíveis (
feat!:ouBREAKING CHANGE)
Para mais detalhes, consulte docs/RELEASES.md.
🤝 Contribuição
Contribuições são bem-vindas! Por favor, abra uma issue ou envie um pull request.
📄 Licença
MIT License - veja o arquivo LICENSE para detalhes.
Available Tools
8 toolsanalyze_projectC
Análise completa de um projeto Terragrunt, incluindo estrutura, configurações e dependências
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Caminho para o diretório raiz do projeto Terragrunt | |
| includeMetrics | No | Incluir métricas detalhadas na análise |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description does not disclose any behavioral traits such as side effects, data persistence, or constraints. It merely states the function.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, concise sentence. No extraneous information, though it could be slightly more structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity (2 params, no output schema), the description is minimally adequate but lacks any information about return values or expected output format.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with both parameters having descriptions. The description adds no additional semantic value beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it performs a 'complete analysis' of a Terragrunt project covering structure, configurations, and dependencies. However, it does not differentiate from siblings like get_dependencies or check_stack_structure.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. The description lacks context for agent decision-making among sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_stack_structureB
Analisa a estrutura de stacks Terragrunt e identifica problemas
| Name | Required | Description | Default |
|---|---|---|---|
| stackPath | Yes | Caminho para o arquivo terragrunt.stack.hcl | |
| validateUnits | No | Validar unidades referenciadas no stack |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must fully disclose behavior. It only states that the tool analyzes and identifies problems but does not indicate read-only nature, side effects, authentication needs, or error conditions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence in Portuguese, which is efficient and focused. It avoids unnecessary details but could be more informative without adding much length.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, and the description does not explain the format or structure of the identification of problems. The boundary with sibling tool 'detect_issues' is unclear, and no information about return values is provided.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, so the baseline is 3. The description adds no additional parameter meaning beyond what the schema already provides (stackPath and validateUnits descriptions).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool analyzes Terragrunt stack structures and identifies problems, which is a specific verb+resource combination. It distinguishes from sibling tools like 'analyze_project' and 'detect_issues' by focusing on Terragrunt stacks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as 'detect_issues' or 'validate_config'. The description does not specify context, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
detect_issuesC
Detecta problemas comuns em projetos Terragrunt
| Name | Required | Description | Default |
|---|---|---|---|
| severity | No | Nível mínimo de severidade dos problemas | warning |
| projectPath | Yes | Caminho para o projeto |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. Description only says 'detects common issues', lacking details on side effects, permissions, or output nature. Insufficient disclosure for a tool that likely performs analysis.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no extraneous content. Efficient despite lacking depth.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema; description does not clarify what the tool returns (e.g., list of issues, format). Fails to provide a complete picture for usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 100% description coverage for both parameters. Description adds no additional semantics beyond schema; baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Detecta' (detects) and resource 'problemas comuns em projetos Terragrunt' (common issues in Terragrunt projects). It is specific and generally distinguishable from siblings, though not explicitly.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives like analyze_project or validate_config. Missing context for decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_unused_modulesB
Identifica módulos Terragrunt não utilizados ou órfãos
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Caminho para o projeto | |
| includeTransitive | No | Incluir dependências transitivas na análise |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavioral traits. It does not mention whether the tool is read-only, modifies state, requires permissions, or has side effects. It only states its purpose without behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, concise and free of fluff. However, it could benefit from additional structured information without being overly verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the moderate complexity (2 params, no output schema, no annotations), the description is too minimal. It fails to explain what constitutes 'unused' or 'orphaned', the analysis scope, or what the agent can expect as output, leaving critical gaps for correct usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, meaning both parameters have descriptions in the schema. The tool description adds no further semantic meaning beyond the schema, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Identifica') and resource ('módulos Terragrunt não utilizados ou órfãos'), which distinguishes it from siblings like analyze_project or detect_issues that focus on different aspects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as detect_issues or get_dependencies. There is no mention of prerequisites or context where this should be preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_dependenciesB
Mapeia e analisa dependências entre módulos Terragrunt
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Caminho para o diretório do projeto | |
| outputFormat | No | Formato de saída das dependências | json |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It does not indicate whether it is read-only, destructive, requires permissions, or any side effects. The term 'analyzes' is vague and leaves the agent uncertain about safety.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence, but lacks structured formatting (e.g., sections). It is efficient yet minimal, earning a high score for brevity but not perfect for structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool lacks an output schema, and the description does not explain return values or output format (e.g., graph vs. tree). For a dependency mapping tool, this is a significant gap. The schema's outputFormat enum hints at formats, but the description should clarify what each produces.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so parameters are well-documented in the input schema. The description adds no additional meaning beyond what the schema provides, meeting the baseline expectation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool maps and analyzes dependencies between Terragrunt modules, which is a specific verb+resource. It distinguishes from sibling tools like find_unused_modules or check_stack_structure by focusing on dependencies.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. Sibling tools exist for project analysis, but without context on when get_dependencies is appropriate, the agent lacks decision support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_project_metricsC
Coleta métricas detalhadas do projeto Terragrunt
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Caminho para o projeto | |
| includeComplexity | No | Incluir métricas de complexidade |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It fails to mention whether the tool is read-only, requires permissions, has side effects, or returns data in a specific format. The phrase 'collects metrics' implies a read operation but lacks explicit confirmation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that conveys the core purpose. It is concise and front-loaded, though it could be considered too sparse given the lack of further details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is minimal for a tool with 2 parameters and no output schema. It does not explain what metrics are included, how they are returned, or how they relate to sibling tools. More context is needed to enable correct selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with both parameters having descriptions in the schema. The tool description does not add extra meaning beyond what the schema already provides, so baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool collects detailed metrics for a Terragrunt project, with a specific verb and resource. However, it does not differentiate from sibling tools like 'analyze_project' or 'detect_issues', which could also be seen as collecting information.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus its siblings. The description does not mention prerequisites, alternative tools, or context-specific use cases, leaving the agent to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
suggest_optimizationsC
Sugere otimizações para melhorar performance e manutenibilidade
| Name | Required | Description | Default |
|---|---|---|---|
| categories | No | Categorias específicas de otimização | |
| projectPath | Yes | Caminho para o projeto Terragrunt |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only states that the tool suggests optimizations but does not disclose whether it is read-only, modifies state, requires permissions, or has any side effects. This is a significant gap for an agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, making it concise and front-loaded. However, the use of Portuguese may cause issues in a multilingual environment, and the brevity sacrifices completeness. Still, it is efficient in length.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 2 simple parameters and no output schema, the description is minimally complete. However, it does not describe the format or structure of the suggestions (e.g., list, report), nor any dependencies or prerequisites. An agent would lack context on what to expect from the output.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with both parameters having descriptions. The tool description does not add any additional meaning beyond the schema. It does not explain how 'categories' constrain suggestions or how 'projectPath' is used, so it meets the baseline but adds no extra value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'sugere' (suggests) and the resource 'otimizações' (optimizations) with a purpose to improve performance and maintainability. While it distinguishes itself from siblings like 'detect_issues' which detect problems, it could be more specific about the scope of optimizations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention any context, prerequisites, or exclusions. With siblings like 'analyze_project' and 'validate_config', an agent would need more direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_configC
Valida arquivos de configuração Terragrunt (terragrunt.hcl, terragrunt.stack.hcl)
| Name | Required | Description | Default |
|---|---|---|---|
| configPath | Yes | Caminho para o arquivo de configuração Terragrunt | |
| strictMode | No | Usar validação rigorosa baseada em Terragrunt 0.82.3 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears full responsibility for behavioral disclosure. It does not state whether the tool is read-only, requires permissions, or what happens on validation failure (e.g., error messages, exit codes). The name 'validate' implies non-destructiveness, but that is not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-formed sentence that efficiently conveys the tool's purpose. It is front-loaded and contains no unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having only 2 parameters and no output schema, the description omits crucial context such as return format, error behavior, and whether the tool modifies files. For a validation tool, these details are important for an agent to use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters. The description adds some context by listing the file types, which reinforces the purpose of configPath. However, it does not add significant new meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it validates Terragrunt configuration files and specifies the file types (terragrunt.hcl, terragrunt.stack.hcl). However, it does not differentiate from sibling tools like check_stack_structure or detect_issues, which may have overlapping functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus its siblings, nor does it mention prerequisites or when not to use it. It only states the basic function.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Most tools have distinct purposes (e.g., find_unused_modules focuses on orphan detection, get_dependencies on dependency mapping). However, analyze_project is broad and could potentially overlap with check_stack_structure or detect_issues, but descriptions mitigate this.
All tools follow a consistent verb_noun pattern in English (analyze, check, detect, find, get, suggest, validate), making them predictable and easy to differentiate.
With 8 tools, the server covers the main aspects of Terragrunt project analysis (structure, dependencies, validation, optimization) without being over- or underwhelming. Each tool serves a clear purpose.
The tool set covers key analysis tasks: configuration validation, dependency mapping, unused module detection, issue detection, metrics, and optimization suggestions. No obvious gaps for a static analysis server.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Free MCP tools: the only MCP linter, health checks, cost estimation, and trust evaluation.
Lean 4 MCP server: compile, prove theorems, and formalize math with Mathlib.
Statically audits MCP tool surfaces for token cost, schema quality, and design issues.
Render, verify, describe, and safely edit Mermaid diagrams through MCP.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceConnects AI models to the Terraform Registry via MCP, enabling provider lookups, resource usage examples, and module recommendations for streamlined Terraform workflows.595120MIT
- AlicenseNot gradedqualityCmaintenanceA secure, containerized MCP server that enables AI assistants to manage Terraform infrastructure using integrated Language Server Protocol (LSP) tools. It facilitates safe operations like initialization, validation, and planning while providing context-aware code completion and documentation.10MIT
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server for producing better Terraform through CLI analysis (tflint, checkov, trivy, kics, infracost), best-practice guidance from terraform-best-practices.com, cloud provider recommendations (Azure, AWS, GCP), and Terraform Registry resource and module guidance.18651MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI clients to perform local code search, indexing, and analysis across Java, JavaScript/TypeScript, .NET/C#, and Python projects through the MCP protocol.1Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nataliagranato/terragrunt-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server