We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/inite-ai/radius-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Default values for radius-mcp-server
global:
env: dev
namespace: radius-mcp-server
# Application configuration
app:
name: radius-mcp-server
version: "0.1.4"
port: 3000
# Image configuration
image:
repository: "" # Will be set by werf
tag: "" # Will be set by werf
pullPolicy: IfNotPresent
# Image pull credentials for GitLab Container Registry
imageCredentials:
registry: registry-yc.myradius.ru
username: gitlab-ci-token
password: "" # Will be set from CI_JOB_TOKEN
# Replica configuration
replicaCount: 1
# Service configuration
service:
type: ClusterIP
port: 3000
targetPort: 3000
annotations: {}
# Ingress configuration
ingress:
enabled: true
className: nginx
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "true"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
cert-manager.io/cluster-issuer: letsencrypt-prod
host: mcp-server.myradius.ru
tls:
enabled: true
secretName: mcp-server-tls
# Resource limits and requests
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 128Mi
# Autoscaling configuration
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
targetMemoryUtilizationPercentage: 80
# Pod security context
podSecurityContext:
fsGroup: 1001
runAsNonRoot: true
runAsUser: 1001
# Security context
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: false
runAsNonRoot: true
runAsUser: 1001
# Node selector, tolerations, and affinity
nodeSelector: {}
tolerations: []
affinity: {}
# Probes configuration
probes:
livenessProbe:
httpGet:
path: /mcp
port: http
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /mcp
port: http
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 3
failureThreshold: 3
# Environment variables
env:
NODE_ENV: production
PORT: "3000"
# Secrets (will be set via CI/CD variables)
secrets:
CALENDAR_API_HOST_URL: ""
CALENDAR_API_KEY: ""
EMPLOYEE_API_KEY: ""
EMPLOYEE_API_BASE_URL: ""
# ConfigMap for application configuration
config:
# Add any configuration that should be in a ConfigMap
app_name: radius-mcp-server
# PostgreSQL dependency (optional)
postgresql:
enabled: false
auth:
postgresPassword: ""
username: radius_mcp
password: ""
database: radius_mcp
primary:
persistence:
enabled: true
size: 8Gi
# Service Account
serviceAccount:
create: true
annotations: {}
name: ""
# Pod disruption budget
podDisruptionBudget:
enabled: false
minAvailable: 1