We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/medplum/medplum'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
apiVersion: v1
kind: Service
metadata:
name: {{ include "medplum.fullname" . }}-service
namespace: {{ include "medplum.namespace" . }}
{{- if eq .Values.global.cloudProvider "gcp" }}
annotations:
cloud.google.com/neg: '{"ingress": true}'
cloud.google.com/backend-config: '{"default": "medplum-backendconfig"}'
{{- end }}
labels:
{{- include "medplum.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type | default "ClusterIP" }}
ports:
- name: http
protocol: TCP
port: {{ .Values.service.port | default 80 }}
targetPort: {{ .Values.service.targetPort | default 8103 }}
{{- if and (eq (.Values.service.type | default "ClusterIP") "NodePort") .Values.service.nodePort }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
selector:
{{- include "medplum.selectorLabels" . | nindent 4 }}