We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jhalsey87/MCP_NIH_Reporter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•420 B
# Use Python 3.11 slim image for smaller size
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install dependencies first (for better caching)
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy server code
COPY server.py .
# Make server executable
RUN chmod +x server.py
# Set environment variables
ENV PYTHONUNBUFFERED=1
# Run the MCP server
CMD ["python", "server.py"]