We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vfarcic/dot-ai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{{- if .Values.serviceAccount.create -}}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: {{ include "dot-ai.fullname" . }}
labels:
{{- include "dot-ai.labels" . | nindent 4 }}
{{- $annotations := include "dot-ai.annotations" (dict "global" .Values.annotations "local" nil) -}}
{{- if $annotations }}
annotations:
{{- $annotations | nindent 4 }}
{{- end }}
rules:
# Full read access to discover any resource type
- apiGroups: ["*"]
resources: ["*"]
verbs: ["get", "list", "watch"]
# Full write access to deploy any resource type
- apiGroups: ["*"]
resources: ["*"]
verbs: ["create", "update", "patch", "delete"]
# Non-resource URLs (needed for discovery)
- nonResourceURLs: ["*"]
verbs: ["get"]
{{- end }}