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
{{- /*
Ingress
- Routes:
- / → mcp-context-forge (Gateway)
- /fast-time → mcp-fast-time-server (optional)
- All service names use the same helper so they follow the
<release>-mcp-stack-* naming convention.
*/ -}}
{{- if .Values.mcpContextForge.ingress.enabled }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "mcp-stack.fullname" . }}-ingress
annotations:
{{- range $key, $value := .Values.mcpContextForge.ingress.annotations }}
{{ $key }}: {{ $value | quote }}
{{- end }}
spec:
ingressClassName: {{ .Values.mcpContextForge.ingress.className }}
rules:
- host: {{ .Values.mcpContextForge.ingress.host }}
http:
paths:
# ─── Gateway root ───
- path: {{ .Values.mcpContextForge.ingress.path }}
pathType: {{ .Values.mcpContextForge.ingress.pathType }}
backend:
service:
name: {{ include "mcp-stack.fullname" . }}-mcpgateway
port:
number: {{ .Values.mcpContextForge.service.port }}
# ─── Fast-Time-Server (optional) ───
{{- if and .Values.mcpFastTimeServer.enabled .Values.mcpFastTimeServer.ingress.enabled }}
- path: {{ .Values.mcpFastTimeServer.ingress.path }}
pathType: {{ .Values.mcpFastTimeServer.ingress.pathType }}
backend:
service:
name: {{ include "mcp-stack.fullname" . }}-mcp-fast-time-server
port:
number: {{ .Values.mcpFastTimeServer.ingress.servicePort }}
{{- end }}
{{- end }}