We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/surplus96/PM-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_daily.sh•328 B
#!/bin/zsh
set -euo pipefail
# Load env if exists (robust)
if [ -f .env ]; then
set -a
source ./.env
set +a
fi
# Create and activate venv
if [ ! -d .venv ]; then
python3 -m venv .venv
fi
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m mcp_server.main