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
deploy-server.sh•374 B
#!/usr/bin/env bash
if [[ -z "${ECS_CLUSTER}" ]]; then
echo "ECS_CLUSTER is missing"
exit 1
fi
if [[ -z "${ECS_SERVICE}" ]]; then
echo "ECS_SERVICE is missing"
exit 1
fi
# Fail on error
set -e
# Echo commands
set -x
# Update the medplum fargate service
aws ecs update-service \
--cluster "$ECS_CLUSTER" \
--service "$ECS_SERVICE" \
--force-new-deployment