We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wujtruj/curl-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•501 B
FROM python:3.11-slim
# Install curl and other necessary tools
RUN apt-get update && \
apt-get install -y curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy requirements and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the MCP server code
COPY server.py .
# Expose MCP server port (if using HTTP transport)
EXPOSE 8080
# Run the MCP server
CMD ["python", "server.py"]