forked from hashicorp/terraform-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
102 lines (102 loc) · 2.91 KB
/
server.json
File metadata and controls
102 lines (102 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.hashicorp/terraform-mcp-server",
"title": "Terraform",
"description": "Generate more accurate Terraform and automate workflows for HCP Terraform and Terraform Enterprise",
"repository": {
"url": "https://github.com/hashicorp/terraform-mcp-server",
"source": "github"
},
"version": "0.4.0",
"packages": [
{
"registryType": "oci",
"identifier": "docker.io/hashicorp/terraform-mcp-server:0.4.0",
"transport": {
"type": "stdio"
},
"runtimeHint": "docker",
"runtimeArguments": [
{
"type": "positional",
"value": "run"
},
{
"type": "named",
"name": "--rm"
},
{
"type": "named",
"name": "-i"
},
{
"type": "named",
"name": "-e",
"description": "Set an environment variable in the runtime",
"isRepeated": true
},
{
"type": "positional",
"valueHint": "env_var_name",
"value": "TFE_ADDRESS",
"description": "Environment variable name"
},
{
"type": "named",
"name": "-e",
"description": "Set an environment variable in the runtime",
"isRepeated": true
},
{
"type": "positional",
"valueHint": "env_var_name",
"value": "TFE_TOKEN",
"description": "Environment variable name"
},
{
"type": "named",
"name": "-e",
"description": "Set an environment variable in the runtime",
"isRepeated": true
},
{
"type": "positional",
"valueHint": "env_var_name",
"value": "ENABLE_TF_OPERATIONS",
"description": "Environment variable name"
},
{
"type": "positional",
"valueHint": "image_name",
"value": "hashicorp/terraform-mcp-server:0.4.0",
"description": "The container image to run"
}
],
"environmentVariables": [
{
"name": "TFE_ADDRESS",
"description": "HCP Terraform or Terraform Enterprise base URL.",
"default": "https://app.terraform.io",
"isRequired": false
},
{
"name": "TFE_TOKEN",
"description": "HCP Terraform or Terraform Enterprise API token used to authenticate requests.",
"isRequired": false,
"isSecret": true
},
{
"name": "ENABLE_TF_OPERATIONS",
"description": "Set to true to enable tools that execute Terraform operations requiring explicit approval.",
"default": "false",
"format": "boolean",
"choices": [
"true",
"false"
],
"isRequired": false
}
]
}
]
}