We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Pyda-AI/prometheus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
prometheus-mcp.auto.tfvars.example•2.07 kB
# =============================================================================
# PROMETHEUS-MCP CONFIGURATION
# =============================================================================
#
# SETUP:
# 1. Copy this file: cp prometheus-mcp.auto.tfvars.example prometheus-mcp.auto.tfvars
# 2. Set enable_prometheus_mcp = true to deploy prometheus-mcp
# 3. Fill in your AMP workspace ID and region below
# 4. Run: terraform apply
#
# The .auto.tfvars extension means Terraform automatically loads this file.
# No need to pass -var-file or -var flags!
#
# =============================================================================
# -----------------------------------------------------------------------------
# FEATURE FLAG - Enable/Disable prometheus-mcp
# -----------------------------------------------------------------------------
# Set to true to deploy prometheus-mcp resources
# Set to false (default) to skip prometheus-mcp entirely
enable_prometheus_mcp = true
# -----------------------------------------------------------------------------
# REQUIRED (only when enable_prometheus_mcp = true)
# -----------------------------------------------------------------------------
# AWS region where your AMP workspace is located
# Usually the same as your EKS cluster region
aws_region = "us-west-1"
# Your AWS Managed Prometheus workspace ID
# Get it with: aws amp list-workspaces --query "workspaces[].workspaceId" --output text
amp_workspace_id = "ws-REPLACE-WITH-YOUR-WORKSPACE-ID"
# -----------------------------------------------------------------------------
# OPTIONAL - Uncomment and modify if needed
# -----------------------------------------------------------------------------
# Container image (default: ghcr.io/deeptrace/prometheus-mcp:0.1.0)
# prometheus_mcp_image = "ghcr.io/deeptrace/prometheus-mcp:0.1.0"
# Number of replicas (default: 2)
# prometheus_mcp_replicas = 2
# Node selector - must match your node group labels (default: { workload = "prometheus-mcp" })
# prometheus_mcp_node_selector = { workload = "prometheus-mcp" }