The Terramate MCP Server integrates Terramate CLI and Terramate Cloud with ChatGPT, Cursor, Claude Code, and any LLM, for seamless Infrastructure as Code (IaC) development.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"terramate-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The Terramate MCP Server integrates Terramate CLI and Terramate Cloud with AI assistants like ChatGPT, Claude, Cursor, and any LLM that supports the Model Context Protocol (MCP).
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
Enhanced MCP server for GitLab: group projects listing and activity tracking
MCP Server for kubernetes management commands
MCP Security Weekly
Get CVE alerts and security updates for Terramate Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Terramate MCP Server integrates Terramate CLI and Terramate Cloud with AI assistants like ChatGPT, Claude, Cursor, and any LLM that supports the Model Context Protocol (MCP).
This server enables natural language interactions with your Terramate Cloud organization, allowing you to query deployments, stacks, drifts, and manage Infrastructure as Code (IaC) workflows directly from your AI assistant.
terramate cloud login (self-service, no admin required)git clone https://github.com/terramate-io/terramate-mcp-server.git
cd terramate-mcp-server
make build
The binary will be available at bin/terramate-mcp-server.
Pull the pre-built image from GitHub Container Registry:
# Pull the latest version
docker pull ghcr.io/terramate-io/terramate-mcp-server:latest
# Run with JWT authentication (recommended)
# First: terramate cloud login
docker run --rm -it \
-v ~/.terramate.d:/root/.terramate.d:ro \
-e TERRAMATE_REGION="eu" \
ghcr.io/terramate-io/terramate-mcp-server:latest
# Or with API key (issuing an organization API key requires admin privileges)
docker run --rm -it \
-e TERRAMATE_API_KEY="your-api-key" \
-e TERRAMATE_REGION="eu" \
ghcr.io/terramate-io/terramate-mcp-server:latest
Apple Silicon (M1/M2/M3/M4): The Docker image is built for
linux/amd64. On Apple Silicon Macs you must pass--platform linux/amd64todocker run(anddocker pull). Docker Desktop will run the image via Rosetta emulation automatically. See the Claude Desktop and Cursor integration examples below for ready-to-use configurations.
Or build locally:
# Build with default version info
docker build -t terramate-mcp-server .
# Build with custom version information
docker build . \
--build-arg VERSION=1.0.0 \
--build-arg GIT_COMMIT=$(git rev-parse --short HEAD) \
--build-arg BUILD_TIME=$(date -u '+%Y-%m-%d_%H:%M:%S') \
-t terramate-mcp-server:1.0.0
# Run with JWT authentication (recommended)
docker run --rm -it \
-v ~/.terramate.d:/root/.terramate.d:ro \
-e TERRAMATE_REGION="eu" \
terramate-mcp-server:latest
# Or with API key (deprecated)
docker run --rm -it \
-e TERRAMATE_API_KEY="your-api-key" \
-e TERRAMATE_REGION="eu" \
terramate-mcp-server:latest
Docker Build Arguments:
| Argument | Description | Default |
|---|---|---|
VERSION | Version to emb |