Cloudforge MCP Server

Visualise diagrams, generate Terraform HCL, and manage Azure/AWS/GCP infrastructure with AI.

Local serverstdioGo

What is the Cloudforge MCP server?

Visualise diagrams, generate Terraform HCL, and manage Azure/AWS/GCP infrastructure with AI. That is what the cloudforge mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

MCP server for CloudForge — lets Claude and other AI assistants visualise cloud architecture diagrams, generate Terraform HCL, import existing IaC, and manage your infrastructure resources directly from chat.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • Visualisation — The Visualisation tool exposed by this server
  • Terraform — The Terraform tool exposed by this server
  • Organisation — The Organisation tool exposed by this server

What it needs from you

Configuration is passed through the environment: CLOUDFORGE_TOKEN, CLOUDFORGE_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of cloud and infrastructure servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Cloudforge's toolset — Visualisation, Terraform, Organisation — is a fair guide to whether it matches your workflow. It is maintained by cloudforgetech6-ctrl; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
VisualisationThe Visualisation tool exposed by this server.
TerraformThe Terraform tool exposed by this server.
OrganisationThe Organisation tool exposed by this server.

How to install the Cloudforge MCP server

{
  "mcpServers": {
    "cloudforge": {
      "command": "npx",
      "args": ["-y", "cloudforge-mcp"],
      "env": {
        "CLOUDFORGE_TOKEN": "your-bearer-token"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
CLOUDFORGE_TOKENCredential the server authenticates with.Yes
CLOUDFORGE_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Cloudforge to Visualisation.
  • Use Cloudforge to Terraform.
  • Use Cloudforge to Organisation.

Frequently asked questions

It connects Cloudforge to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Visualisation, Terraform, Organisation) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Cloudforge directly.