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_mcp_local.sh•233 B
#!/bin/zsh
set -euo pipefail
if [ -f .env ]; then
set -a; source ./.env; set +a
fi
if [ ! -d .venv ]; then
python3 -m venv .venv
fi
source .venv/bin/activate
python -m pip install -r requirements.txt
python -m mcp_server.mcp_app