Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

The Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.

License

NotificationsYou must be signed in to change notification settings

hashicorp/terraform-mcp-server

Repository files navigation

Terraform MCP Server

The Terraform MCP Server is aModel Context Protocol (MCP)server that provides seamless integration with Terraform Registry APIs, enabling advancedautomation and interaction capabilities for Infrastructure as Code (IaC) development.

Use Cases

  • Automating Terraform provider and module discovery
  • Extracting and analyzing data from Terraform Registry
  • Getting detailed information about provider resources and data sources
  • Exploring and understanding Terraform modules

Caution: The outputs and recommendations provided by the MCP server are generated dynamically and may vary based on the query, model, and the connected MCP server. Users shouldthoroughly review all outputs/recommendations to ensure they align with their organization'ssecurity best practices,cost-efficiency goals, andcompliance requirements before implementation.

Prerequisites

  1. To run the server in a container, you will need to haveDocker installed.
  2. Once Docker is installed, you will need to ensure Docker is running.

Installation

Usage with VS Code

Add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressingCtrl + Shift + P and typingPreferences: Open User Settings (JSON).

More about using MCP server tools in VS Code'sagent mode documentation.

{"mcp": {"servers": {"terraform": {"command":"docker","args": ["run","-i","--rm","hashicorp/terraform-mcp-server"        ]      }    }  }}

Optionally, you can add a similar example (i.e. without the mcp key) to a file called.vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

{"servers": {"terraform": {"command":"docker","args": ["run","-i","--rm","hashicorp/terraform-mcp-server"      ]    }  }}

More about using MCP server tools in Claude Desktopuser documentation.

Usage with Claude Desktop

{"mcpServers": {"terraform": {"command":"docker","args": ["run","-i","--rm","hashicorp/terraform-mcp-server"      ]    }  }}

Tool Configuration

Available Toolsets

The following sets of tools are available:

ToolsetToolDescription
providersresolveProviderDocIDQueries the Terraform Registry to find and list available documentation for a specific provider using the specifiedserviceSlug. Returns a list of provider document IDs with their titles and categories for resources, data sources, functions, or guides.
providersgetProviderDocsFetches the complete documentation content for a specific provider resource, data source, or function using a document ID obtained from theresolveProviderDocID tool. Returns the raw documentation in markdown format.
modulessearchModulesSearches the Terraform Registry for modules based on specifiedmoduleQuery with pagination. Returns a list of module IDs with their names, descriptions, download counts, verification status, and publish dates
modulesmoduleDetailsRetrieves detailed documentation for a module using a module ID obtained from thesearchModules tool including inputs, outputs, configuration, submodules, and examples.

Install from source

Use the latest release version:

go install github.com/hashicorp/terraform-mcp-server/cmd/terraform-mcp-server@latest

Use the main branch:

go install github.com/hashicorp/terraform-mcp-server/cmd/terraform-mcp-server@main
{"mcp": {"servers": {"terraform": {"command":"/path/to/terraform-mcp-server","args": ["stdio"]      }    }  }}

Building the Docker Image locally

Before using the server, you need to build the Docker image locally:

  1. Clone the repository:
git clone https://github.com/hashicorp/terraform-mcp-server.gitcd terraform-mcp-server
  1. Build the Docker image:
make docker-build

This will create a local Docker image that you can use in the following configuration.

{"servers": {"terraform": {"command":"docker","args": ["run","-i","--rm","terraform-mcp-server"      ]    }  }}

Development

Prerequisites

  • Go (checkgo.mod file for specific version)
  • Docker (optional, for container builds)

Running Tests

# Run all testsmaketest# Run e2e testsmake test-e2e

Available Make Commands

make build# Build the binarymaketest# Run all testsmake test-e2e# Run end-to-end testsmake clean# Remove build artifactsmake deps# Download dependenciesmake docker-build# Build docker image

Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Make your changes
  4. Run tests
  5. Submit a pull request

License

This project is licensed under the terms of the MPL-2.0 open source license. Please refer toLICENSE file for the full terms.

Security

For security issues, please contactsecurity@hashicorp.com or follow oursecurity policy.

Support

For bug reports and feature requests, please open an issue on GitHub.

For general questions and discussions, open a GitHub Discussion.

About

The Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks


[8]ページ先頭

©2009-2025 Movatter.jp