Skip to main content
Glama

ElevenLabs Text-to-Speech MCP

by georgi-io
main.tf853 B
resource "aws_ecr_repository" "repository" { name = var.repository_name image_tag_mutability = var.image_tag_mutability image_scanning_configuration { scan_on_push = var.scan_on_push } encryption_configuration { encryption_type = var.encryption_type } } # Separate Lifecycle-Policy-Ressource resource "aws_ecr_lifecycle_policy" "policy" { count = var.enable_lifecycle_policy ? 1 : 0 repository = aws_ecr_repository.repository.name policy = jsonencode({ rules = [ { rulePriority = 1 description = "Keep last ${var.image_count_to_keep} images" selection = { tagStatus = "any" countType = "imageCountMoreThan" countNumber = var.image_count_to_keep } action = { type = "expire" } } ] }) }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/georgi-io/jessica'

If you have feedback or need assistance with the MCP directory API, please join our Discord server