We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrisgreenx-ctrl/serena'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
data.tf•591 B
# Data sources for the Terraform configuration
# Get the latest Ubuntu AMI
data "aws_ami" "ubuntu" {
most_recent = true
owners = ["099720109477"] # Canonical
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
}
# Get available availability zones
data "aws_availability_zones" "available" {
state = "available"
}
# Get current AWS caller identity
data "aws_caller_identity" "current" {}
# Get current AWS region
data "aws_region" "current" {}