We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nirholas/universal-crypto-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: ucm-gateway-hpa
namespace: ucm
labels:
app: ucm-gateway
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: ucm-gateway
minReplicas: 3
maxReplicas: 20
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 70
- type: Resource
resource:
name: memory
target:
type: Utilization
averageUtilization: 80
- type: Pods
pods:
metric:
name: http_requests_per_second
target:
type: AverageValue
averageValue: "1000"
behavior:
scaleDown:
stabilizationWindowSeconds: 300
policies:
- type: Percent
value: 10
periodSeconds: 60
- type: Pods
value: 1
periodSeconds: 60
selectPolicy: Min
scaleUp:
stabilizationWindowSeconds: 0
policies:
- type: Percent
value: 100
periodSeconds: 15
- type: Pods
value: 4
periodSeconds: 15
selectPolicy: Max
---
# Vertical Pod Autoscaler (optional, requires VPA installed)
apiVersion: autoscaling.k8s.io/v1
kind: VerticalPodAutoscaler
metadata:
name: ucm-gateway-vpa
namespace: ucm
spec:
targetRef:
apiVersion: apps/v1
kind: Deployment
name: ucm-gateway
updatePolicy:
updateMode: "Off" # Set to "Auto" to enable automatic updates
resourcePolicy:
containerPolicies:
- containerName: gateway
minAllowed:
cpu: 100m
memory: 128Mi
maxAllowed:
cpu: 4
memory: 4Gi
controlledResources: ["cpu", "memory"]