Skip to main content
Glama
status-local.shโ€ข1.56 kB
#!/bin/bash echo "๐Ÿ“Š Medplum Deployment Status" echo "==========================" # Check if namespace exists if kubectl get namespace medplum &>/dev/null; then echo "โœ… Namespace: medplum exists" # Check pods echo "" echo "๐Ÿ”„ Pods:" kubectl get pods -n medplum # Check services echo "" echo "๐ŸŒ Services:" kubectl get services -n medplum # Check if Medplum is responding echo "" echo "๐Ÿฅ Health Check:" if kubectl exec -n medplum deployment/medplum -- node -e "fetch('http://localhost:8103/healthcheck').then(r => r.json()).then(console.log).catch(console.error)" 2>/dev/null; then echo "โœ… Medplum is healthy!" echo "๐ŸŒ Access at: http://localhost:8103" else echo "โŒ Medplum health check failed" fi else echo "โŒ Namespace 'medplum' not found. Run ./deploy-local.sh to deploy." fi echo "" echo "โšก Fission Status" echo "================" # Check if Fission namespace exists if kubectl get namespace fission &>/dev/null; then echo "โœ… Fission namespace exists" # Check Fission pods echo "" echo "๐Ÿ”„ Fission Pods:" kubectl get pods -n fission # Get router ClusterIP echo "" ROUTER_CLUSTER_IP=$(kubectl get svc router -n fission -o jsonpath='{.spec.clusterIP}' 2>/dev/null) if [ -n "$ROUTER_CLUSTER_IP" ]; then echo "๐ŸŒ Router: $ROUTER_CLUSTER_IP:80 (internal)" else echo "โŒ Router ClusterIP not found" fi else echo "โŒ Fission not found. Run ./deploy-local.sh to deploy." fi

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/medplum/medplum'

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