Skip to main content
Glama

FastMCP Server Template

by rdwj
openshift.yaml1.75 kB
--- apiVersion: build.openshift.io/v1 kind: BuildConfig metadata: name: fda-mcp spec: output: to: kind: ImageStreamTag name: fda-mcp:latest source: type: Binary binary: {} strategy: type: Docker dockerStrategy: dockerfilePath: Containerfile --- apiVersion: image.openshift.io/v1 kind: ImageStream metadata: name: fda-mcp --- apiVersion: apps/v1 kind: Deployment metadata: name: fda-mcp spec: replicas: 1 selector: matchLabels: app: fda-mcp template: metadata: labels: app: fda-mcp spec: containers: - name: fda-mcp image: fda-mcp:latest ports: - containerPort: 8080 protocol: TCP livenessProbe: tcpSocket: port: 8080 initialDelaySeconds: 10 periodSeconds: 10 readinessProbe: tcpSocket: port: 8080 initialDelaySeconds: 5 periodSeconds: 5 env: - name: MCP_TRANSPORT value: "http" - name: MCP_HTTP_HOST value: "0.0.0.0" - name: MCP_HTTP_PORT value: "8080" - name: MCP_HTTP_PATH value: "/mcp/" resources: limits: memory: "512Mi" cpu: "500m" requests: memory: "256Mi" cpu: "100m" --- apiVersion: v1 kind: Service metadata: name: fda-mcp spec: selector: app: fda-mcp ports: - port: 8080 targetPort: 8080 protocol: TCP --- apiVersion: route.openshift.io/v1 kind: Route metadata: name: fda-mcp spec: to: kind: Service name: fda-mcp port: targetPort: 8080 tls: termination: edge insecureEdgeTerminationPolicy: Redirect

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rdwj/fda-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server