We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cmalpass/mcp-presidio'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
install.sh•645 B
#!/bin/bash
# MCP Presidio Installation Script Wrapper
# Check if Python is available
if ! command -v python3 &> /dev/null && ! command -v python &> /dev/null; then
echo "❌ Error: Python is not installed or not in PATH"
echo "Please install Python 3.10 or higher and try again"
exit 1
fi
# Use python3 if available, otherwise python
PYTHON_CMD="python3"
if ! command -v python3 &> /dev/null; then
PYTHON_CMD="python"
fi
# Get the directory where the script is located
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Run the Python installation script
cd "$SCRIPT_DIR" || exit 1
$PYTHON_CMD install.py "$@"