We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rainer85ah/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
variable "aws_region" {
description = "The AWS region to deploy to"
type = string
}
variable "environment" {
description = "The deployment environment (dev, uat, stag, prod)"
type = string
}
variable "ghcr_user" {
description = "GitHub Container Registry username"
type = string
}
variable "image_tag" {
description = "Docker image tag to deploy (dev, stag, uat, latest)"
type = string
}
variable "vpc_name" {
description = "Name for the VPC"
type = string
}
variable "vpc_cidr" {
description = "CIDR block for the VPC"
type = string
}
variable "public_subnet_cidrs" {
description = "List of public subnet CIDRs"
type = list(string)
}
variable "private_subnet_cidrs" {
description = "List of private subnet CIDRs"
type = list(string)
}
variable "ecs_execution_role_arn" {
description = "IAM role ARN for ECS task execution"
type = string
}