T
Terraform Cloud
Query Terraform Cloud workspaces, runs and state.
·No reviews yet
Share:
About
Auto-generated
Terraform Cloud is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Terraform Cloud.
- What does the Terraform Cloud MCP do?
- This MCP allows you to interact with Terraform Cloud workspaces, runs, and state. It provides a standardized way to query and manage your infrastructure as code resources through the Model Context Protocol.
- How do I configure Terraform Cloud MCP credentials?
- The Terraform Cloud MCP requires an API key for authentication. You will need to obtain an API key from your HashiCorp Cloud Platform (HCP) account and configure it within your MCP client. Refer to your client's documentation for specific setup instructions.
- Does this MCP cost money to use?
- The cost of using the Terraform Cloud MCP depends on your underlying Terraform Cloud subscription. The MCP itself does not incur additional costs beyond the Terraform Cloud service. Pricing details for Terraform Cloud are available on the HashiCorp website.
- What are the common use cases for the Terraform Cloud MCP?
- Typical use cases include programmatically retrieving Terraform Cloud state for auditing, monitoring run statuses, and automating workflows that involve querying workspace configurations. It enables integration with other tools in your developer environment.
- Is there a limitation to using the Terraform Cloud MCP?
- A limitation is that its functionality is restricted to querying existing Terraform Cloud resources. It does not natively support initiating new Terraform runs or modifying infrastructure directly. Interactions are read-only regarding state and configuration details.
Install Terraform Cloud
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"terraform-cloud": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-terraform-cloud"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"terraform-cloud": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-terraform-cloud"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"terraform-cloud": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-terraform-cloud"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.