We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lucad-28/traffict-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•461 B
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy only dependency files first for better layer caching
COPY requirements.txt pyproject.toml ./
# Copy application code
COPY . .
# Install runtime dependencies from requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port
EXPOSE 8080
# Set environment variables (can be overridden)
ENV PORT=8080
ENV TRAFFIC_API_URL=
# Run the server
CMD ["python", "server.py"]