We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/paschmaria/mwaa-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-healthcheck.sh•176 B
#!/bin/sh
# Simple health check for MCP server
# Checks if the Python process is running
if pgrep -f "awslabs.mwaa_mcp_server" > /dev/null; then
exit 0
else
exit 1
fi