We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SPRIME01/MCPContextForge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
secret-gateway.yaml•1.02 kB
{{/* -------------------------------------------------------------------
SECRET - Gateway Sensitive Configuration
-------------------------------------------------------------------
- Renders a Secret named <release>-mcp-stack-gateway-secret
- Keys come from values.yaml → mcpContextForge.secret
- Uses stringData so you can keep readable values in your values.yaml;
Kubernetes will base64-encode them on creation.
- Put ONLY sensitive credentials or tokens here.
------------------------------------------------------------------- */}}
{{- if .Values.mcpContextForge.secret }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "mcp-stack.fullname" . }}-gateway-secret
labels:
{{- include "mcp-stack.labels" . | nindent 4 }}
app.kubernetes.io/component: gateway
type: Opaque
stringData:
{{- /* Iterate over every key in mcpContextForge.secret */}}
{{- range $key, $val := .Values.mcpContextForge.secret }}
{{ $key }}: {{ $val | quote }}
{{- end }}
{{- end }}