Skip to main content
Glama
nataliagranato

Terragrunt MCP Server

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

analyze_project

Análise completa do projeto

validate_config

Valida configurações HCL

get_dependencies

Mapeia dependências

check_stack_structure

Analisa estrutura de stacks

suggest_optimizations

Sugere otimizações

detect_issues

Detecta problemas

get_project_metrics

Coleta métricas

find_unused_modules

Encontra módulos órfãos

Related MCP server: Terry-Form MCP

🚀 Recursos

🔍 Análise de Projeto

  • Detecção automática de arquivos terragrunt.hcl e terragrunt.stack.hcl

  • Mapeamento 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 Terragrunt

  • validate_config - Validação de arquivos de configuração

  • get_dependencies - Mapeamento de dependências

  • check_stack_structure - Análise de stacks

  • suggest_optimizations - Sugestões de melhoria

  • detect_issues - Detecção de problemas comuns

  • get_project_metrics - Métricas do projeto

  • find_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 start

Desenvolvimento

npm run dev

Executar 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.hcl

  • Aná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!: ou BREAKING 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 tools
analyze_projectC

Análise completa de um projeto Terragrunt, incluindo estrutura, configurações e dependências

ParametersJSON Schema
NameRequiredDescriptionDefault
projectPathYesCaminho para o diretório raiz do projeto Terragrunt
includeMetricsNoIncluir métricas detalhadas na análise

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
stackPathYesCaminho para o arquivo terragrunt.stack.hcl
validateUnitsNoValidar unidades referenciadas no stack

TDQS

B3.1/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
severityNoNível mínimo de severidade dos problemaswarning
projectPathYesCaminho para o projeto

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
projectPathYesCaminho para o projeto
includeTransitiveNoIncluir dependências transitivas na análise

TDQS

B3.1/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
projectPathYesCaminho para o diretório do projeto
outputFormatNoFormato de saída das dependênciasjson

TDQS

B3.1/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
projectPathYesCaminho para o projeto
includeComplexityNoIncluir métricas de complexidade

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
categoriesNoCategorias específicas de otimização
projectPathYesCaminho para o projeto Terragrunt

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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)

ParametersJSON Schema
NameRequiredDescriptionDefault
configPathYesCaminho para o arquivo de configuração Terragrunt
strictModeNoUsar validação rigorosa baseada em Terragrunt 0.82.3

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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

A3.5/5.0
Disambiguation4/5

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.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in English (analyze, check, detect, find, get, suggest, validate), making them predictable and easy to differentiate.

Tool Count5/5

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.

Completeness5/5

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

ActivitySlowing
ResponsivenessSyncing

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    A 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.
    10
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI clients to perform local code search, indexing, and analysis across Java, JavaScript/TypeScript, .NET/C#, and Python projects through the MCP protocol.
    1
    Apache 2.0

Latest Blog Posts

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