@@ -373,37 +373,27 @@ services:
373
373
exit 1
374
374
fi
375
375
376
- # ##############################################################################
377
- # OTHER MCP SERVERS - drop-in helpers the Gateway can call (not implemented yet)
378
- # ###############################################################################
379
- # mcp_time:
380
- # image: mcp/time:latest
381
- # networks: [mcpnet]
382
-
383
- # mcp_playwright:
384
- # image: mcp/playwright:latest
385
- # networks: [mcpnet]
386
-
387
- # mcp_postgres:
388
- # image: mcp/postgres:latest
389
- # networks: [mcpnet]
390
-
391
- # mcp_github:
392
- # image: mcp/github:latest
393
- # networks: [mcpnet]
394
-
395
- # mcp_filesystem:
396
- # image: mcp/filesystem:latest
397
- # networks: [mcpnet]
398
-
399
- # mcp_perplexity_ask:
400
- # image: mcp/perplexity-ask:latest
401
- # networks: [mcpnet]
402
-
403
- # mcp_memory:
404
- # image: mcp/memory:latest
405
- # networks: [mcpnet]
406
-
407
- # mcp_fetch:
408
- # image: mcp/fetch:latest
409
- # networks: [mcpnet]
376
+ # ##############################################################################
377
+ # Hashicorp Terraform MCP Server
378
+ # https://hub.docker.com/r/hashicorp/terraform-mcp-server
379
+ # https://github.com/hashicorp/terraform-mcp-server/blob/main/README.md
380
+ # ##############################################################################
381
+ # terraform-mcp-server:
382
+ # image: docker.io/hashicorp/terraform-mcp-server:dev
383
+ # container_name: terraform-mcp-server
384
+ # networks: [mcpnet]
385
+ # ports:
386
+ # - "8001:8080" # Map host port 8888 to container port 8080
387
+ # restart: unless-stopped
388
+ # environment:
389
+ # - TRANSPORT_MODE=streamable-http
390
+ # - TRANSPORT_HOST=0.0.0.0
391
+ # - TRANSPORT_PORT=8080
392
+ # - MCP_CORS_MODE=disabled
393
+ # healthcheck:
394
+ # test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
395
+ # interval: 30s
396
+ # timeout: 10s
397
+ # retries: 5
398
+ # start_period: 20s
399
+
0 commit comments