Skip to main content
Glama
bitgeese

Sequential Questioning MCP Server

by bitgeese
deployment.yaml1.8 kB
apiVersion: apps/v1 kind: Deployment metadata: name: sequential-questioning labels: app: sequential-questioning spec: replicas: 2 selector: matchLabels: app: sequential-questioning strategy: type: RollingUpdate rollingUpdate: maxSurge: 1 maxUnavailable: 0 template: metadata: labels: app: sequential-questioning spec: containers: - name: sequential-questioning image: sequential-questioning:latest imagePullPolicy: IfNotPresent ports: - containerPort: 8000 name: http resources: limits: cpu: "1" memory: "1Gi" requests: cpu: "500m" memory: "512Mi" readinessProbe: httpGet: path: /health port: 8000 initialDelaySeconds: 5 periodSeconds: 10 livenessProbe: httpGet: path: /health port: 8000 initialDelaySeconds: 15 periodSeconds: 20 env: - name: DATABASE_URL valueFrom: secretKeyRef: name: sequential-questioning-secrets key: database-url - name: QDRANT_URL valueFrom: configMapKeyRef: name: sequential-questioning-config key: qdrant-url - name: LOG_LEVEL valueFrom: configMapKeyRef: name: sequential-questioning-config key: log-level - name: METRICS_ENABLED valueFrom: configMapKeyRef: name: sequential-questioning-config key: metrics-enabled securityContext: runAsNonRoot: true runAsUser: 1000 fsGroup: 1000

Latest Blog Posts

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/bitgeese/sequential-questioning'

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