We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jrmatherly/mcp-context-forge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{{- if and .Values.atlassian.enabled (not .Values.atlassian.existingSecret) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "mcp-stack.fullname" . }}-atlassian
labels:
{{- include "mcp-stack.labels" . | nindent 4 }}
app.kubernetes.io/component: atlassian
type: Opaque
stringData:
ATLASSIAN_OAUTH_CLIENT_ID: {{ .Values.atlassian.credentials.clientId | quote }}
ATLASSIAN_OAUTH_CLIENT_SECRET: {{ .Values.atlassian.credentials.clientSecret | quote }}
{{- if .Values.atlassian.bitbucket.clientId }}
BITBUCKET_OAUTH_CLIENT_ID: {{ .Values.atlassian.bitbucket.clientId | quote }}
BITBUCKET_OAUTH_CLIENT_SECRET: {{ .Values.atlassian.bitbucket.clientSecret | quote }}
{{- end }}
{{- end }}