We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/saucelabs/sauce-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
if command -v python3 &> /dev/null; then
PYTHON_CMD="python3"
elif command -v python &> /dev/null && python --version 2>&1 | grep -q "Python 3"; then
PYTHON_CMD="python"
else
echo "Error: Python 3 not found in PATH" >&2
exit 1
fi
exec $PYTHON_CMD -m sauce_api_mcp "$@"