We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zohair-coder/Zohairs-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•403 B
FROM python:3.12
# set the working directory in the container
WORKDIR /app
# copy the current directory contents into the container at /app
COPY . /app
# install dependencies
RUN pip install --upgrade pip && \
pip install -r requirements.txt && \
playwright install chromium --with-deps
# Run the Python script
CMD ["python3", "src/main.py", "--db", "--all-colleges", "--ratings", "--email"]